isengard-bot/commands.py

31 lines
157 B
Python
Raw Normal View History

2022-02-05 00:46:57 +01:00
# Isengard commands
def cmdping():
"""
Ping command.
"""
return "pong !"
# Commands
commandtable = {
"ping" : cmdping,
}