mirror of
https://github.com/MarkParker5/STARK.git
synced 2024-12-09 09:27:56 +02:00
94ec8b40fd
map nested objects replace dict
9 lines
211 B
Python
9 lines
211 B
Python
from VICore import CommandsManager, Response
|
|
|
|
|
|
manager = CommandsManager('smalltalk')
|
|
|
|
@manager.new('привет*')
|
|
def hello():
|
|
voice = text = 'Привет'
|
|
return Response(text = text, voice = voice) |