Added "what's the current song" for spotify skill

This commit is contained in:
Mathieu B 2021-07-30 12:27:42 +02:00
parent aa9979e5e0
commit 9be10ee6c5

View File

@ -39,3 +39,7 @@ class JokesSkill(Skill, metaclass=SkillRegistering):
@intent_handler(IntentBuilder("JokingIntent").require("Joke")) @intent_handler(IntentBuilder("JokingIntent").require("Joke"))
def handle_joke(self, data): def handle_joke(self, data):
print(speak_joke()) print(speak_joke())
def create_skill():
return JokesSkill()