Created
June 6, 2018 14:32
-
-
Save olbrichj/073df2c757035dd2fb6b73553416e7b4 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 func confirm(intent: DanceIntent, completion: @escaping (DanceIntentResponse) -> Void) { | |
// Do Stuff | |
completion(DanceIntentResponse(code: .play, userActivity: nil)) | |
} | |
public func handle(intent: DanceIntent, completion: @escaping (DanceIntentResponse) -> Void) { | |
// Do Stuff | |
completion(DanceIntentResponse.success(dance: dance, playTime: 10)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment