/
burning_hell
/
ci-cd-lab-7
Обзор
Документация
Войти
/
burning_hell
/
ci-cd-lab-7
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/utils/__init__.py
20 строк
665 B
burning-hel
first commit
13 ноя 2025, 20:33
13 ноя 2025, 20:33
272e6aa
Код
Авторство
О чём код?
""" File Manager Package This package provides a command-line file manager with the following modules: - file_ops: File operations (create, read, write, delete, copy, move, rename) - dir_ops: Directory operations (create, remove) - navigation: Filesystem navigation (list directory, change directory) - main: Main application logic and user interface """ __version__ = "1.0.0" from .file_ops import FileOperations from .dir_ops import DirectoryOperations from .navigation import Navigation from .configreader import ConfigReader __all__ = ['FileOperations', 'DirectoryOperations', 'Navigation', 'ConfigReader'] print(f"Initializing File Manager {__version__}")