package com.suno.android.feature_tweaks.no_op import com.suno.feature_tweaks.TweaksEntryPoint import dagger.Binds import dagger.Module import dagger.hilt.InstallIn import dagger.hilt.components.SingletonComponent @Module @InstallIn(SingletonComponent::class) interface StubTweaksModule { @Binds fun bindTweaksEntryPoint( tweaksEntryPoint: StubTweaksEntryPoint, ): TweaksEntryPoint }