diff --git a/fin_depo/__init__.py b/fin_depo/__init__.py index 4640904..11ea7cb 100644 --- a/fin_depo/__init__.py +++ b/fin_depo/__init__.py @@ -1 +1,4 @@ -# TODO +__all__ = ['defi_kraken', 'defi_kucoin'] + +from . import defi_kraken +from . import defi_kucoin diff --git a/test/test_data.py b/test/test_data.py index 77ef5d8..cee1467 100644 --- a/test/test_data.py +++ b/test/test_data.py @@ -2,4 +2,5 @@ import pytest import fin_depo -# TODO +def test_nothing(): + pass