Spaces:
Paused
Paused
Commit
·
940600a
1
Parent(s):
538552f
fix: solve circular import in _init_ files
Browse files- src/handlers/__init__.py +0 -8
- src/services/__init__.py +0 -2
src/handlers/__init__.py
CHANGED
@@ -4,14 +4,6 @@ Handlers module for Yuga Planner.
|
|
4 |
This module contains handlers for web UI interactions and MCP API endpoints.
|
5 |
"""
|
6 |
|
7 |
-
from .web_backend import (
|
8 |
-
load_data,
|
9 |
-
show_solved,
|
10 |
-
start_timer,
|
11 |
-
auto_poll,
|
12 |
-
show_mock_project_content,
|
13 |
-
)
|
14 |
-
|
15 |
from .mcp_backend import (
|
16 |
process_message_and_attached_file,
|
17 |
)
|
|
|
4 |
This module contains handlers for web UI interactions and MCP API endpoints.
|
5 |
"""
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
from .mcp_backend import (
|
8 |
process_message_and_attached_file,
|
9 |
)
|
src/services/__init__.py
CHANGED
@@ -9,7 +9,6 @@ from .schedule import ScheduleService
|
|
9 |
from .data import DataService
|
10 |
from .mock_projects import MockProjectService
|
11 |
from .state import StateService
|
12 |
-
from .mcp_client import MCPClientService
|
13 |
|
14 |
__all__ = [
|
15 |
"LoggingService",
|
@@ -17,5 +16,4 @@ __all__ = [
|
|
17 |
"DataService",
|
18 |
"MockProjectService",
|
19 |
"StateService",
|
20 |
-
"MCPClientService",
|
21 |
]
|
|
|
9 |
from .data import DataService
|
10 |
from .mock_projects import MockProjectService
|
11 |
from .state import StateService
|
|
|
12 |
|
13 |
__all__ = [
|
14 |
"LoggingService",
|
|
|
16 |
"DataService",
|
17 |
"MockProjectService",
|
18 |
"StateService",
|
|
|
19 |
]
|