From a1c2a999e449054d6641bbb633954e45fcd63f90 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Mon, 25 Jan 2021 01:14:28 +0100 Subject: Add plugins and importers from private config The importers are missing tests, because not having any specifications for the import formats means we must use real, private data as test inputs --- beancount_extras_kris7t/importers/transferwise/__main__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 beancount_extras_kris7t/importers/transferwise/__main__.py (limited to 'beancount_extras_kris7t/importers/transferwise/__main__.py') diff --git a/beancount_extras_kris7t/importers/transferwise/__main__.py b/beancount_extras_kris7t/importers/transferwise/__main__.py new file mode 100644 index 0000000..e25580d --- /dev/null +++ b/beancount_extras_kris7t/importers/transferwise/__main__.py @@ -0,0 +1,11 @@ +''' +Importer for Transferwise API transaction history. +''' +__copyright__ = 'Copyright (c) 2020 Kristóf Marussy ' +__license__ = 'GNU GPLv2' + +from importers.transferwise.client import main + + +if __name__ == '__main__': + main() -- cgit v1.2.3-54-g00ecf