From 9e5e5da02b4a9704543e0efd7eb568b31a77a369 Mon Sep 17 00:00:00 2001 From: Matheus Date: Sun, 2 Nov 2025 21:23:02 -0300 Subject: list locations --- api/main.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'api/main.py') diff --git a/api/main.py b/api/main.py index e69de29..b4c85c5 100644 --- a/api/main.py +++ b/api/main.py @@ -0,0 +1,11 @@ +from fastapi import FastAPI +from .routes import locations + +app = FastAPI() +app.include_router(locations.router) + + +@app.get('/') +async def root(): + return {'msg': 'You will never be happy.'} + -- cgit v1.2.3