1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-11-28 21:39:53 +02:00

one command - one file, kinogo fullscreen mode

This commit is contained in:
MarkParker5
2020-10-31 21:11:24 +02:00
parent 0126e93e5c
commit 33b07afe5f
8 changed files with 208 additions and 200 deletions

13
SmallTalk/hello.py Normal file
View File

@@ -0,0 +1,13 @@
from .SmallTalk import *
################################################################################
def method(params):
voice = text = 'Привет'
return {
'type': 'simple',
'text': text,
'voice': voice,
}
patterns = ['* привет* *',]
hello = SmallTalk('Hello', {}, patterns)
hello.setStart(method)