package com.suno.android.feature_tweaks.staff import com.suno.feature_tweaks.TweaksEntryPoint import dagger.Binds import dagger.Module import dagger.hilt.InstallIn import dagger.hilt.components.SingletonComponent import javax.inject.Singleton @Module @InstallIn(SingletonComponent::class) interface StaffTweaksModule { @Binds @Singleton fun bindStaffTweaksEntryPoint( staffTweaksEntryPoint: StaffTweaksEntryPoint, ): TweaksEntryPoint }