first commit

This commit is contained in:
hayato5246
2026-03-31 19:32:59 +09:00
commit d10b794c9f
78 changed files with 1671595 additions and 0 deletions

9
models/news.go Normal file
View File

@@ -0,0 +1,9 @@
package models
// NewsItem 뉴스 기사 항목
type NewsItem struct {
Title string `json:"title"` // 기사 제목 (HTML 태그 제거됨)
URL string `json:"url"` // 원문 URL
PublishedAt string `json:"publishedAt"` // 발행일시 (RFC1123Z)
Source string `json:"source"` // 출처 (도메인)
}