diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-06-06 20:37:56 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-06-06 20:37:56 +0100 |
commit | ed88746cd33c0f861e9c45bf05bf9e44d86089ba (patch) | |
tree | e6656f3d54bd738383d048c744d330dca2c15e4c /src/backend/__init__.py | |
parent | 2d86cd9ddc5d9442e4a8e8fb50d72480a8293a4a (diff) |
filesystem module : gather all the folder and file paths used by sisyphus under one module, and expose them to other modules from there
Diffstat (limited to 'src/backend/__init__.py')
-rw-r--r-- | src/backend/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/__init__.py b/src/backend/__init__.py index c5f8f58..d9fdc29 100644 --- a/src/backend/__init__.py +++ b/src/backend/__init__.py @@ -7,6 +7,7 @@ from .cache import * from .check import * from .csvfiles import * from .database import * +from .filesystem import * from .help import * from .install import * from .killportage import * @@ -24,4 +25,3 @@ from .uninstallforce import * from .uninstall import * from .update import * from .upgrade import * - |