Skip to content

Commit 1c38e3c

Browse files
kokerinksNorbertLoh
authored andcommitted
feat(collab): add basic app/main.py
1 parent 9fbff4f commit 1c38e3c

File tree

1 file changed

+8
-0
lines changed
  • services/collaboration-service/app

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)