Skip to content

Latest commit

 

History

History
44 lines (43 loc) · 1.38 KB

File metadata and controls

44 lines (43 loc) · 1.38 KB

BE_INSIDEUP-BACKEND │ ├── README.md ├── README.md.bak ├── app │   ├── api │   │   ├── init.py │   │   └── v1 │   ├── core │   │   ├── init.py │   │   ├── config.py │   │   └── database.py │   ├── crud │   │   ├── init.py │   │   ├── community_crud.py │   │   ├── diary_crud.py │   │   └── user.py │   ├── init_db.py │   ├── models │   │   ├── init.py │   │   ├── categories_model.py │   │   ├── comment_model.py │   │   ├── diary_model.py │   │   ├── post_model.py │   │   └── user_model.py │   ├── schemas │   │   ├── init.py │   │   ├── comment_schema.py │   │   ├── diary_schema.py │   │   ├── post_schema.py │   │   └── user.py │   └── services │   ├── init.py │   └── user.py ├── main.py ├── requirements.txt ├── run.sh └── structure.txt

9 directories, 29 files