forked from HelikarLab/candis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added cache manager, configuration update using cached configuration
- Loading branch information
1 parent
17cda19
commit 88fbf33
Showing
20 changed files
with
5,336 additions
and
5,079 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
# module - candis | ||
from candis.config import Config, get_config, CONFIG | ||
from candis.manager import Cache | ||
from candis.ios.cdata import CData | ||
from candis.ios.pipeline import Pipeline | ||
from candis.ios import cdata, pipeline | ||
# candis.cli | ||
from candis.cli import main | ||
|
||
__version__ = CONFIG.VERSION | ||
cache = Cache() | ||
cache.create() | ||
|
||
config = cache.get_config() | ||
CONFIG.update(config) |
Oops, something went wrong.