Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created August 9, 2024 03:19
Show Gist options
  • Save skydoves/ed49a19a9708b5b279016ac0027a68ef to your computer and use it in GitHub Desktop.
Save skydoves/ed49a19a9708b5b279016ac0027a68ef to your computer and use it in GitHub Desktop.
user_viewmodel
public interface LoginRepository
public interface UserDeviceRepository
@HiltViewModel
public class UserViewModel @Inject constructor(
private val repository: LoginRepository,
private val userDeviceRepository: UserDeviceRepository,
) : ViewModel() {
..
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment