API Pedidos - Estructura + Modelos

This commit is contained in:
Daniel Arroyo
2026-04-11 03:45:33 +00:00
commit 4d97545599
10 changed files with 100 additions and 0 deletions

4
app/models/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
# Task Models
from .order import Order, OrderItem, Base
__all__ = ["Order", "OrderItem", "Base"]