Created
October 13, 2019 20:34
-
-
Save drrost/6b94066284263c2008934ca14d8d72b3 to your computer and use it in GitHub Desktop.
AuthenticationService dummy
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
import Foundation | |
public class AuthenticationService { | |
public init() { | |
} | |
public func login(_ username: String, _ password: String) -> String { | |
return UUID().uuidString | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment