commit c83aade144d3300b24505dc09d5a6905c77b8b16 parent 63a1d07a283a1c013c09bf43328c8a3ebe513f8c Author: lash <dev@holbrook.no> Date: Sat, 14 May 2022 12:40:21 +0000 Add data config path module Diffstat:
A | chaind/data/__init__.py | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/chaind/data/__init__.py b/chaind/data/__init__.py @@ -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')