package com.suno.android.push import dagger.Module import dagger.Provides import dagger.hilt.InstallIn import dagger.hilt.components.SingletonComponent import javax.inject.Singleton @Module @InstallIn(SingletonComponent::class) class PushNotificationModule { @Provides @Singleton fun providePushNotificationManager(): PushNotificationManager = PushNotificationManagerImpl() }