aboutsummaryrefslogtreecommitdiffstats
path: root/beancount_extras_kris7t/importers/transferwise/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'beancount_extras_kris7t/importers/transferwise/__main__.py')
-rw-r--r--beancount_extras_kris7t/importers/transferwise/__main__.py11
1 files changed, 11 insertions, 0 deletions
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 @@
1'''
2Importer for Transferwise API transaction history.
3'''
4__copyright__ = 'Copyright (c) 2020 Kristóf Marussy <kristof@marussy.com>'
5__license__ = 'GNU GPLv2'
6
7from importers.transferwise.client import main
8
9
10if __name__ == '__main__':
11 main()