No need for the fts module anymore

This commit is contained in:
Vitor Pamplona
2026-01-01 14:52:11 -05:00
parent f6d920366d
commit 238d4e0004
2 changed files with 1 additions and 2 deletions
@@ -28,7 +28,6 @@ import com.vitorpamplona.quartz.nip01Core.core.OptimizedJsonMapper
import com.vitorpamplona.quartz.nip59Giftwrap.wraps.GiftWrapEvent
class EventIndexesModule(
val fts: FullTextSearchModule,
val hasher: (db: SQLiteDatabase) -> TagNameValueHasher,
val tagIndexStrategy: IndexingStrategy = DefaultIndexingStrategy(),
) : IModule {
@@ -50,7 +50,7 @@ class SQLiteEventStore(
val seedModule = SeedModule()
val fullTextSearchModule = FullTextSearchModule()
val eventIndexModule = EventIndexesModule(fullTextSearchModule, seedModule::hasher, tagIndexStrategy)
val eventIndexModule = EventIndexesModule(seedModule::hasher, tagIndexStrategy)
val replaceableModule = ReplaceableModule()
val addressableModule = AddressableModule()