Compare commits
2 Commits
4c3cb9315a
...
292c172812
Author | SHA1 | Date | |
---|---|---|---|
292c172812 | |||
d6090f4327 |
1
backend/.gitignore
vendored
Normal file
1
backend/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.venv/
|
@ -1,3 +1,4 @@
|
|||||||
|
"""Agenda App"""
|
||||||
from fastapi import FastAPI
|
from fastapi import FastAPI
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
@ -5,5 +6,5 @@ app = FastAPI()
|
|||||||
|
|
||||||
@app.get('/')
|
@app.get('/')
|
||||||
async def home():
|
async def home():
|
||||||
|
"""Dummy route"""
|
||||||
return 'homepage'
|
return 'homepage'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user