cortex-solver 3.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
cortex/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Cortex — MCP build-methodology server."""
2
+
3
+ from cortex.server import main
4
+
5
+ __all__ = ["main"]
cortex/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Allow running as ``python -m cortex``."""
2
+
3
+ from cortex.server import main
4
+
5
+ main()
@@ -0,0 +1 @@
1
+ """Core business logic for Cortex."""