Add package init files and models
This commit is contained in:
17
confsync/cli/__init__.py
Normal file
17
confsync/cli/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from confsync.cli.main import app
|
||||
from confsync.cli.detect import detect_cmd
|
||||
from confsync.cli.manifest import manifest_cmd
|
||||
from confsync.cli.validate import validate_cmd
|
||||
from confsync.cli.sync import sync_cmd
|
||||
from confsync.cli.merge import merge_cmd
|
||||
from confsync.cli.history import history_cmd
|
||||
|
||||
__all__ = [
|
||||
"app",
|
||||
"detect_cmd",
|
||||
"manifest_cmd",
|
||||
"validate_cmd",
|
||||
"sync_cmd",
|
||||
"merge_cmd",
|
||||
"history_cmd",
|
||||
]
|
||||
Reference in New Issue
Block a user