Files @ f2b9decf2752
Branch filter:

Location: NPO-Accounting/experimental-accounting-api/bin/serve

Joar Wandborg
SQL, GTK

- Made the storage model slightly more flexible
- Made a small P-o-C GUI application in GTK
- Polished accounting.client
- models.Transaction.id is now a str
- Fixed transaction.id marshalling for storage.ledgercli
1
2
3
4
5
6
7
8
9
#! /usr/bin/env python3
import sys

sys.path.append('./')

from accounting.web import main

if __name__ == '__main__':
    sys.exit(main())