Files
eamco_service/app/models/__init__.py
Edwin Eames 07865480c7 Initial commit: Add EAMCO Service API
- Add FastAPI service for managing oil delivery services
- Implement service scheduling and management endpoints
- Add customer service history tracking
- Include database models for services, customers, and auto-delivery
- Add authentication and authorization middleware
- Configure Docker support for local, dev, and prod environments
- Add comprehensive .gitignore for Python projects
2026-02-01 19:02:13 -05:00

6 lines
183 B
Python

# Models module
from .service import Service_Service, Service_Parts, Service_Plans
from .customer import Customer_Customer
from .auto import Auto_Delivery
from .auth import Auth_User