Compare commits

...

2 Commits

Author SHA1 Message Date
292c172812 pep-8 docstrings 2024-04-12 17:30:02 -04:00
d6090f4327 exclude venv directory 2024-04-12 17:29:32 -04:00
2 changed files with 3 additions and 1 deletions

1
backend/.gitignore vendored Normal file
View File

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

View File

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