Files
db_assistant/utils/execute_cmd.py
T
2024-01-09 22:10:13 +07:00

10 lines
241 B
Python

def execute_cmd(self, cmd: str):
if cmd == 'thanks':
self.play("thanks")
elif cmd == 'stupid':
self.play("stupid")
elif cmd == 'off':
self.play("off", True)
self.porcupine.delete()
exit(0)