diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-03-22 12:37:19 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-03-22 12:37:19 (GMT) |
| commit | f8bd1a74613a79cad56b5b60079402d40a87d131 (patch) | |
| tree | a0ac41ef104c8a39375357e2d730d16b9602f86d /wasp/main.py | |
| parent | 5a234c16ada5319228fd2231957ca64d2c9141f8 (diff) | |
Rename manager.py and expose its interfaces to all applications
This is a big change that break compatiblity with existing applications
*and* with existing installed versions of main.py.
When upgrading it is import to update main.py:
./tools/wasptool --upload wasp/main.py
Diffstat (limited to 'wasp/main.py')
| -rw-r--r-- | wasp/main.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/wasp/main.py b/wasp/main.py index cc4c8b6..4f1de10 100644 --- a/wasp/main.py +++ b/wasp/main.py @@ -1,3 +1,2 @@ -import manager, watch -wasp = manager.Manager(watch) -wasp.run() +import wasp +wasp.system.run() |
