19 lines
572 B
Python
19 lines
572 B
Python
class _BotCommands:
|
|
def __init__(self):
|
|
self.StartCommand = 'start'
|
|
self.MirrorCommand = 'mirror'
|
|
self.TarMirrorCommand = 'tarmirror'
|
|
self.CancelMirror = 'cancel'
|
|
self.CancelAllCommand = 'cancelall'
|
|
self.ListCommand = 'list'
|
|
self.StatusCommand = 'status'
|
|
self.AuthorizeCommand = 'authorize'
|
|
self.UnAuthorizeCommand = 'unauthorize'
|
|
self.PingCommand = 'ping'
|
|
self.DiskCommand = 'disk'
|
|
self.HelpCommand = 'help'
|
|
self.LogCommand = 'log'
|
|
|
|
|
|
BotCommands = _BotCommands()
|