Spaces:
Sleeping
Sleeping
Claude Code - Backend Implementation Specialist
Deploy AI-powered Todo application to Hugging Face Spaces
f2b5c2a | """ | |
| Initialize database tables for the Todo application. | |
| """ | |
| from src.database import create_db_and_tables | |
| if __name__ == "__main__": | |
| print("Creating database tables...") | |
| create_db_and_tables() | |
| print("Database tables created successfully!") | |