Skip to content

Commit 45fbf60

Browse files
committed
feat(collab): init service
1 parent 067394d commit 45fbf60

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/__pycache__/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CS3219 Project (PeerPrep) - AY2526S1
2-
## Group: Gxx
2+
## Group: G37
33

44
### Note:
55
- You are required to develop individual microservices within separate folders within this repository.
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)