Compare commits

..

No commits in common. "292c1728121360a6c513a3509af1eecab911e299" and "4c3cb9315a1dd775ca3cf04a638524ace6a9b2eb" have entirely different histories.

2 changed files with 1 additions and 3 deletions

1
backend/.gitignore vendored
View File

@ -1 +0,0 @@
.venv/

View File

@ -1,4 +1,3 @@
"""Agenda App"""
from fastapi import FastAPI from fastapi import FastAPI
app = FastAPI() app = FastAPI()
@ -6,5 +5,5 @@ app = FastAPI()
@app.get('/') @app.get('/')
async def home(): async def home():
"""Dummy route"""
return 'homepage' return 'homepage'