We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d844f79 commit 9b6c959Copy full SHA for 9b6c959
src/mcpm/core/router/types.py
@@ -0,0 +1,6 @@
1
+from enum import Enum
2
+
3
4
+class ConfigType(str, Enum):
5
+ FILE = "file"
6
+ CLOUD = "cloud"
src/mcpm/core/router/watcher.py
@@ -11,7 +11,7 @@
11
from watchfiles import Change, awatch
12
13
from mcpm.core.router.notifier import ConfigUpdateNotifier
14
-from mcpm.core.schema import ConfigType
+from mcpm.core.router.types import ConfigType
15
16
logger = logging.getLogger(__name__)
17
src/mcpm/core/schema.py
@@ -82,7 +82,3 @@ class Profile(BaseModel):
82
name: str
83
api_key: Optional[str]
84
servers: list[ServerConfig]
85
-
86
-class ConfigType(str, Enum):
87
- FILE = "file"
88
- CLOUD = "cloud"
0 commit comments