Skip to content

Instantly share code, notes, and snippets.

@drrost
Created October 13, 2019 20:34
Show Gist options
  • Save drrost/6b94066284263c2008934ca14d8d72b3 to your computer and use it in GitHub Desktop.
Save drrost/6b94066284263c2008934ca14d8d72b3 to your computer and use it in GitHub Desktop.
AuthenticationService dummy
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