diff --git a/doc/build/html/_modules/accounting/storage.html b/doc/build/html/_modules/accounting/storage.html new file mode 100644 index 0000000000000000000000000000000000000000..8ef62a23ded42966d0682a4fe0be7e7ece442198 --- /dev/null +++ b/doc/build/html/_modules/accounting/storage.html @@ -0,0 +1,112 @@ + + + + + + + + accounting.storage — Accounting API 0.1-beta documentation + + + + + + + + + + + + + + +
+
+
+
+ +

Source code for accounting.storage

+class Storage:
+
[docs] ''' + ABC for accounting storage + ''' + def __init__(self, *args, **kw): + raise NotImplementedError() + + def get_transactions(self, *args, **kw): +
[docs] raise NotImplementedError() + + def get_transaction(self, *args, **kw):
+
[docs] raise NotImplementedError() + + def get_account(self, *args, **kw):
+
[docs] raise NotImplementedError() + + def get_accounts(self, *args, **kw):
+
[docs] raise NotImplementedError() +
+ +
+
+ +
+
+ + +
+
+
+ + + + + \ No newline at end of file