Add data config path module

This commit is contained in:
lash 2022-05-14 12:40:21 +00:00
parent 63a1d07a28
commit c83aade144
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 6 additions and 0 deletions

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')