
- Created FastAPI application with SQLite database - Implemented monitor management endpoints (CRUD operations) - Added uptime checking functionality with response time tracking - Included statistics endpoints for uptime percentage and metrics - Set up database models and Alembic migrations - Added comprehensive API documentation - Configured CORS and health check endpoints
4 lines
83 B
Python
4 lines
83 B
Python
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
Base = declarative_base()
|