1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-07-02 22:36:54 +02:00
Files
STARK/SmallTalk/SmallTalk.py
dQz6tMwk8rJqvDR 217195d119 finish incapsulation in Command
complete Command.find()
add SmallTalk.ctime
2020-06-20 23:34:38 +03:00

16 lines
416 B
Python

# Create class SmallTalk
# Is child of Command
# Module for speaking with voice assistent
# See class Command
from Command import Command # import parent class
class SmallTalk(Command):
def start(this, string): # main method
print('Im using SmallTalk now :)')
def confirm(this): # optional method
return True