aboutsummaryrefslogtreecommitdiff
path: root/ledger.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xledger.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/ledger.py b/ledger.py
new file mode 100755
index 0000000..61eb6a5
--- /dev/null
+++ b/ledger.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python3
+from utils.args import get_arguments, test_args
+
+def main():
+ args = get_arguments()
+ test_args(args)
+
+ print(args)
+
+
+if __name__ == '__main__':
+ main()