imaginaryfriend/src/handler/commands/help.py

12 lines
245 B
Python
Raw Normal View History

2016-12-04 14:13:04 +01:00
from .base import Base
2017-04-18 22:02:10 +02:00
from src.utils import read_to_string
2016-12-04 14:13:04 +01:00
class Help(Base):
name = 'help'
2017-04-18 22:40:40 +02:00
text = read_to_string('resources/info/help.txt')
2016-12-04 14:13:04 +01:00
@staticmethod
def execute(bot, command):
2017-04-18 22:02:10 +02:00
Help.reply(bot, command, Help.text)