9656c39e91
- Switched from int to decimal.Decimal - Moved models to accounting.models
9 lines
142 B
Python
Executable file
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())
|