Get basic debug Flask application working

Now I can serve up an API endpoint that indicates the version. yay
This commit is contained in:
Eli Ribble 2016-05-02 09:30:27 -06:00
parent 681a62bbf5
commit 03e431a2ce
6 changed files with 93 additions and 0 deletions

9
bin/vanth Normal file → Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env python3
import vanth.main
def run():
vanth.main.main()
if __name__ == '__main__':
run()