experimental-accounting-api/bin/client
Joar Wandborg 9656c39e91 Added client, other fixes
- Switched from int to decimal.Decimal
- Moved models to accounting.models
2013-12-11 09:25:55 +01:00

9 lines
142 B
Python
Executable file

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