Spaces:
Sleeping
Sleeping
File size: 256 Bytes
363cda9 | 1 2 3 4 5 6 7 8 9 10 11 | """Database CLI utilities."""
import sys
import os
# Add project root to sys.path for all db scripts
project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../'))
if project_root not in sys.path:
sys.path.insert(0, project_root)
|