Created
January 29, 2021 11:25
-
-
Save micHar/c84435e366046ff9ec9c1066c51c0321 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SaveUserUseCaseIos( | |
private val wrapped: SaveUserUseCase | |
) { | |
public fun saveUser(user: User): SuspendWrapper<Unit> = | |
SuspendWrapper(exportedScopeProvider_mainScopeProvider) { wrapped.saveUser(user) } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment