ROTA 오픈소스 프로젝트 구조와 구성 요소 분석

프로젝트 디렉터리 구조 ROTA/ ├── README.md ├── src/ │ ├── app.py │ ├── settings.py │ ├── utilities/ │ │ ├── tools.py │ │ └── log_handler.py │ └── components/ │ ├── processor.py │ └── handler.py ├── tests/ │ ├── test_app.py │ └── test_settings.py └── requirements.txt 디렉터리 및 파일 설명 README.md: 프로젝트 ...

6월 14일 00:32에 게시됨