Skip to content

Commit

Permalink
🚚 GetCurrentRunnerCountUseCase -> GetRunnerCountUseCase 유즈케이스 이름 변경
Browse files Browse the repository at this point in the history
Co-authored-by: yonghanJu <[email protected]>
  • Loading branch information
bngsh and yonghanJu committed Nov 17, 2022
1 parent 22c5806 commit 92a1b61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.whyranoid.domain.repository.RunningRepository
import kotlinx.coroutines.flow.Flow
import javax.inject.Inject

class GetCurrentRunnerCountUseCase @Inject constructor(private val runningRepository: RunningRepository) {
class GetRunnerCountUseCase @Inject constructor(private val runningRepository: RunningRepository) {
operator fun invoke(): Flow<Int> {
return runningRepository.getCurrentRunnerCount()
}
Expand Down

0 comments on commit 92a1b61

Please sign in to comment.