Created
January 4, 2021 17:39
-
-
Save kinisoftware/7276f02879729b45931f27229b02c625 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| class PlaybackStartedHandler : RequestHandler { | |
| override fun canHandle(input: HandlerInput) = | |
| input.matches(Predicates.requestType(PlaybackStartedRequest::class.java)) | |
| override fun handle(input: HandlerInput) = input.responseBuilder.build() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment