py.lib.aw_config

Yohn Y. 2024-05-04 Parent:bece3a8a67a5 Child:b76a704f31b1

1:81fc92335324 Go to Latest

py.lib.aw_config/src/aw_config/__init__.py

+ Модуль получения имени директории размещения приложения

History
     1.1 --- a/src/aw_config/__init__.py	Sat May 04 18:23:23 2024 +0300
     1.2 +++ b/src/aw_config/__init__.py	Sat May 04 18:58:50 2024 +0300
     1.3 @@ -2,10 +2,12 @@
     1.4  from .env import get_env
     1.5  from .type_helpers import ANY, DICT, LIST
     1.6  from .file import ConfigFile, ConfigSectionNotFound, ConfigFileError
     1.7 +from .app_tools import get_app_root
     1.8  
     1.9  
    1.10  __all__ = [
    1.11      'get_env',
    1.12      'ANY', 'DICT', 'LIST',
    1.13      'ConfigFile', 'ConfigSectionNotFound', 'ConfigFileError',
    1.14 +    'get_app_root',
    1.15  ]