cg task 源码
结构 . ├── app ├── constants.py ├── error.py # custom errors ├── main.py ├── router # routes aka controller in mvc pattern └── service.py # logics aka model in mvc pattern ├── test ├── data # sample data to run the unit tests └── test_service.py # unit tests for the service.py module ├── .env # environment variables ├── Dockerfile ├── pyproject.toml ├── README.md
文件列表
cg-task-main.zip
(预估有个14文件)
cg-task-main
.gitignore
39B
Dockerfile
182B
app
service.py
1KB
error.py
152B
constants.py
397B
main.py
923B
router.py
436B
requirements.txt
162B
暂无评论