Skip to content

Commit

Permalink
refactor : 함수 private 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
huiwoo-jo committed Apr 1, 2024
1 parent f85daba commit 2d95344
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ class MainViewModel(private val mainRepository: MainRepository) : BaseViewModel(
_FCMToken.postValue(token)
}

fun getUserDepart(){
private fun getUserDepart(){
_myDepartment.value = mainRepository.getUserDepartment()
}

fun getUserTopic(){
private fun getUserTopic(){
viewModelScope.launch {
_myTopics.value = mainRepository.getUserTopic()
}
Expand Down

0 comments on commit 2d95344

Please sign in to comment.