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 6ab2a52 commit 0d9b130Copy full SHA for 0d9b130
services/collaboration-service/app/main.py
@@ -0,0 +1,8 @@
1
+from fastapi import FastAPI
2
+
3
+app = FastAPI()
4
5
+## API for testing connection
6
+@app.get("/ping")
7
+def ping():
8
+ return {"message": "Pong"}
0 commit comments