Add Bot API parser and code-generator

This commit is contained in:
Alex RootJunior 2019-06-30 22:50:51 +03:00
parent 5e9d4e55d9
commit af2573dbee
15 changed files with 3242 additions and 1 deletions

7
generator/__main__.py Normal file
View file

@ -0,0 +1,7 @@
import logging
import sys
from generator.cli import main
if __name__ == "__main__":
sys.exit(main(sys.argv))