Skip to content

Commit

Permalink
FIX :: [#324] SplashViewModel
Browse files Browse the repository at this point in the history
useCase 사용
  • Loading branch information
Eunho0922 committed May 15, 2024
1 parent d545879 commit 30241bf
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,18 @@ public class SplashViewModel: AuthViewModelType {

public struct Output {}


public init(authUseCase: AuthUseCase) {
self.useCase = authUseCase
self.disposeBag = DisposeBag()

useCase.tokenReIssue()
}

public func transform(_ input: Input, action: (Output) -> Void) -> Output {

let ouput = Output()
action(ouput)

// useCase.appleSignupResult()

return Output()
}
}

0 comments on commit 30241bf

Please sign in to comment.