Commit inicial

This commit is contained in:
Ricardo 2026-09-11 17:22:41 -03:00
commit 5385af660d
10 changed files with 173 additions and 0 deletions

15
main.py Normal file
View file

@ -0,0 +1,15 @@
import uvicorn
from fastapi import FastAPI
from app.core.configs import settings
from app.v1.api import api_router
app = FastAPI(
title = 'API - Podium',
version= '0.0.1'
)
app.include_router(api_router, prefix='/v1')
if __name__ == '__main__':
uvicorn.run(app, host='127.0.0.1', port=settings.port)