Document bot commands

This commit is contained in:
2021-04-19 03:59:00 +00:00
parent 3aa766926b
commit 679030ff9a
3 changed files with 145 additions and 46 deletions
+13
View File
@@ -0,0 +1,13 @@
HELP_LINES = []
with open('game.py', 'r') as f:
for line in f.readlines():
if line.strip().startswith('## '):
HELP_LINES.append(line.strip()[3:])
for line in HELP_LINES:
print(line)
print()