File size: 398 Bytes
c922f8b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
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'
]