feat: 로그인 요청 구조체 추가

Co-authored-by: aider (gemini/gemini-2.5-flash) <aider@aider.chat>
This commit is contained in:
2026-04-13 16:25:46 +09:00
parent dcd58a9c53
commit 7d6d36d401
+6
View File
@@ -24,6 +24,12 @@ type AddUserRequest struct {
Password string `json:"password"`
}
// LoginRequest는 로그인 요청에 사용됩니다.
type LoginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}
// Config는 애플리케이션 설정을 나타냅니다.
type Config struct {
HtpasswdPath string `json:"htpasswdPath"`