2018-03-14 20:13:40 +00:00
|
|
|
import main
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-08-09 22:06:34 +00:00
|
|
|
class HelpCommand:
|
2019-01-26 18:58:21 +00:00
|
|
|
def __init__(self, *args):
|
|
|
|
self.help(*args)
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-07-21 12:40:01 +00:00
|
|
|
def help(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
2018-02-23 22:05:40 +00:00
|
|
|
if authed:
|
|
|
|
helpMap = []
|
2018-03-14 20:13:40 +00:00
|
|
|
for i in main.help.keys():
|
|
|
|
helpMap.append("%s: %s" % (i, main.help[i]))
|
2018-02-23 22:05:40 +00:00
|
|
|
info("\n".join(helpMap))
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|