experimental-accounting-api/bin/serve
2013-12-09 20:53:20 +01:00

9 lines
140 B
Python
Executable file

#! /usr/bin/env python3
import sys
sys.path.append('./')
from accounting.web import main
if __name__ == '__main__':
sys.exit(main())