File size: 254 Bytes
1941764
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""
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!")