Notice
Recent Posts
Recent Comments
Link
250x250
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- Java
- 파이썬
- LEVEL 2
- javascript
- Python
- bfs
- 너비 우선 탐색
- programmers
- Baekjoon
- 동적계획법
- DP
- 티스토리챌린지
- 깊이 우선 탐색
- 백준
- dfs
- Dynamic Programming
- group by
- 프로그래머스
- 자바스크립트
- join
- Lv. 2
- softeer
- 오블완
- SQL
- SQL 고득점 KIT
- 소프티어
- Lv. 0
- level 3
- Lv. 3
- Lv. 1
Archives
- Today
- Total
목록Controller Layer (1)
몸과 마음이 건전한 SW 개발자
FastAPI 백엔드 개발 가이드: API 구현 순서와 모던 개발 방법론 [2탄]
4. API 개발 순서Step 1: Pydantic Schemas 정의# app/domain/users/schemas/user_schemas.py from pydantic import BaseModel, EmailStr, Field from datetime import datetime from typing import Optional class UserBase(BaseModel): email: EmailStr username: str = Field(..., min_length=3, max_length=50) class UserCreate(UserBase): password: str = Field(..., min_length=8) class UserUpdate(Base..
백엔드
2025. 8. 12. 17:07