Files
rona-backend/chatCommands.py

18 lines
235 B
Python
Raw Normal View History

2020-07-23 20:05:13 +03:00
from typing import Dict
import random
def handle_command(kwargs):
command = kwargs['message'].split()[0]
print(command)
def custom_roll(character, message):
print('asd')
commands: Dict = {
'/roll': custom_roll
}