aboutsummaryrefslogtreecommitdiffstats
path: root/beancount_extras_kris7t/importers/transferwise/__main__.py
blob: 4ac205837cbedc14bf575ac7a46ec14cab94ff22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
'''
Importer for Transferwise API transaction history.
'''
__copyright__ = 'Copyright (c) 2020  Kristóf Marussy <kristof@marussy.com>'
__license__ = 'GNU GPLv2'

from beancount_extras_kris7t.importers.transferwise.client import main


if __name__ == '__main__':
    main()