Use SqliteDatabase as default implementation.

This commit is contained in:
akwizgran
2023-09-05 10:48:58 +01:00
parent 8d7ac49bff
commit bf2de56abe
4 changed files with 5 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ public class DatabaseModule {
@Singleton
Database<Connection> provideDatabase(DatabaseConfig config,
MessageFactory messageFactory, Clock clock) {
return new H2Database(config, messageFactory, clock);
return new SqliteDatabase(config, messageFactory, clock);
}
@Provides