""" | |
Command-line utilities for GAIA implementation. | |
This module provides various command-line scripts and utilities for tasks such as: | |
- File organization | |
- Environment setup | |
- Deployment helpers | |
- Testing utilities | |
- Maintenance scripts | |
""" | |
from src.gaia.utils.cli.organize_files import ( | |
move_file, | |
main as organize_files_main | |
) | |
__all__ = [ | |
'move_file', | |
'organize_files_main' | |
] |