mirror of
https://github.com/aljazceru/dev-gpt.git
synced 2026-01-18 21:14:20 +01:00
feat: new structure
This commit is contained in:
1
src/options/run/__init__.py
Normal file
1
src/options/run/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from src.options.run.runner import Runner
|
||||
11
src/options/run/runner.py
Normal file
11
src/options/run/runner.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from src.apis.jina_cloud import run_locally
|
||||
from src.options import validate_folder_is_correct, get_executor_name, get_latest_version_path
|
||||
|
||||
|
||||
class Runner():
|
||||
def run(self, microservice_path):
|
||||
validate_folder_is_correct(microservice_path)
|
||||
executor_name = get_executor_name(microservice_path)
|
||||
latest_version_path = get_latest_version_path(microservice_path)
|
||||
run_locally(executor_name, latest_version_path)
|
||||
|
||||
Reference in New Issue
Block a user