experimental-accounting-api/bin/serve

10 lines
140 B
Text
Raw Normal View History

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