mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-07-03 14:06:34 +02:00
23 lines
604 B
Kotlin
23 lines
604 B
Kotlin
package com.geeksville.mesh.database
|
|
|
|
import android.app.Application
|
|
import com.geeksville.mesh.database.dao.PacketDao
|
|
import dagger.Module
|
|
import dagger.Provides
|
|
import dagger.hilt.InstallIn
|
|
import dagger.hilt.components.SingletonComponent
|
|
import javax.inject.Singleton
|
|
|
|
@InstallIn(SingletonComponent::class)
|
|
@Module
|
|
class DatabaseModule {
|
|
@Provides
|
|
@Singleton
|
|
fun provideDatabase(app: Application): MeshtasticDatabase =
|
|
MeshtasticDatabase.getDatabase(app)
|
|
|
|
@Provides
|
|
fun providePacketDao(database: MeshtasticDatabase): PacketDao {
|
|
return database.packetDao()
|
|
}
|
|
} |