[feat] Live framework.

This commit is contained in:
acite
2025-10-06 22:54:08 +08:00
parent 390094b8b0
commit a13ddbdd87
4 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
package com.acitelight.aether.viewModel
import androidx.lifecycle.ViewModel
import com.acitelight.aether.service.ApiClient
import dagger.hilt.android.lifecycle.HiltViewModel
import javax.inject.Inject
@HiltViewModel
class LiveScreenViewModel @Inject constructor(
val apiClient: ApiClient
) : ViewModel(){
}