imaginaryfriend/src/handler/commands/help.py

12 lines
245 B
Python

from .base import Base
from src.utils import read_to_string
class Help(Base):
name = 'help'
text = read_to_string('resources/info/help.txt')
@staticmethod
def execute(bot, command):
Help.reply(bot, command, Help.text)