News

Followed the Learn Go Fast tutorial by Alex Mux. The final task of the tutorial is to implement this simple Web API with Authorization and Middleware.
fast-api/ │ ├── app/ │ ├── api/ # Rutas (endpoints) │ ├── core/ # Configuración y variables de entorno │ ├── db/ # Conexión y sesión de base de datos │ ├── models/ # Modelos de SQLAlchemy │ ├── ...