Add data config path module

This commit is contained in:
lash
2022-05-14 12:40:21 +00:00
parent 63a1d07a28
commit c83aade144

6
chaind/data/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
# standard imports
import os
data_dir = os.path.realpath(os.path.dirname(__file__))
config_dir = os.path.join(data_dir, 'config')