vanth/bin/vanth
Eli Ribble 03e431a2ce Get basic debug Flask application working
Now I can serve up an API endpoint that indicates the version. yay
2016-05-02 09:30:27 -06:00

9 lines
111 B
Python
Executable file

#!/usr/bin/env python3
import vanth.main
def run():
vanth.main.main()
if __name__ == '__main__':
run()