Skip to content

Commit c738371

Browse files
authored
Merge pull request #2 from SmartManoj/p1
Update uvicorn app path in main.py files
2 parents 096cb11 + 39dcc61 commit c738371

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pizzaz_server_python/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,4 +324,4 @@ async def _call_tool_request(req: types.CallToolRequest) -> types.ServerResult:
324324
if __name__ == "__main__":
325325
import uvicorn
326326

327-
uvicorn.run("pizzaz_server_python.main:app", host="0.0.0.0", port=8000)
327+
uvicorn.run("main:app", host="0.0.0.0", port=8000)

solar-system_server_python/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,4 +310,4 @@ async def _call_tool_request(req: types.CallToolRequest) -> types.ServerResult:
310310
if __name__ == "__main__":
311311
import uvicorn
312312

313-
uvicorn.run("solar-system_server_python.main:app", host="0.0.0.0", port=8000)
313+
uvicorn.run("main:app", host="0.0.0.0", port=8000)

0 commit comments

Comments
 (0)