Skip to content

Commit 7afdecb

Browse files
committed
feat(collab): init service
1 parent 067394d commit 7afdecb

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/__pycache__/
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from fastapi import FastAPI
2+
3+
app = FastAPI()
4+
5+
@app.get("/hello")
6+
def hello():
7+
return {"message": "Hello World"}
File renamed without changes.

services/collaboration-service/schemas/__init__.py

Whitespace-only changes.

services/collaboration-service/ws/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)