Refactor Project to 3 parts: Models, Control, Data

Need readme
This commit is contained in:
babysor00
2022-12-03 16:54:06 +08:00
parent b402f9dbdf
commit 74a3fc97d0
179 changed files with 197 additions and 27924 deletions

2
web.py
View File

@@ -14,7 +14,7 @@ def launch(port: int = typer.Option(8080, "--port", "-p")) -> None:
# This is required to resolve the opyrator path
sys.path.append(os.getcwd())
from mkgui.base.ui.streamlit_ui import launch_ui
from control.mkgui.base.ui.streamlit_ui import launch_ui
launch_ui(port)
if __name__ == "__main__":