From 7d6d36d4017dfb2c931496932d764da9dacb51ed Mon Sep 17 00:00:00 2001 From: dihwang Date: Mon, 13 Apr 2026 16:25:46 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EC=9A=94?= =?UTF-8?q?=EC=B2=AD=20=EA=B5=AC=EC=A1=B0=EC=B2=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: aider (gemini/gemini-2.5-flash) --- main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.go b/main.go index d02e51e..77945cf 100644 --- a/main.go +++ b/main.go @@ -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"`