This commit is contained in:
Alex Orid 2021-04-20 17:29:42 -04:00
parent 7edda499b3
commit 7f36b9c836

View File

@ -59,12 +59,12 @@ class Module_Networking():
def hello_world():
return 'Boo'
@webSources.route('/bot/TryCommand/<user>/<source>/<message>/')
def bot_TryCommand():
@webSources.route('/bot/TryCommand/<type>/<user>/<source>/<message>/')
def bot_TryCommand(type, user, source, message):
return 'Boo'
@webSources.route('/bot/SendMsg/<type>/<destination>/<message>/')
def bot_SendMsg():
def bot_SendMsg(type, destination, message):
return 'Boo'