Scrap news site

This commit is contained in:
2025-01-25 23:54:50 +08:00
parent 48a04b09a4
commit 5aae59a629
6 changed files with 172 additions and 8 deletions

View File

@ -1,9 +1,10 @@
package models
type NewsSource struct {
ID string `json:"id"`
Label string `json:"label"`
Type string `json:"type"`
Source string `json:"source"`
Depth int `json:"depth"`
ID string `json:"id"`
Label string `json:"label"`
Type string `json:"type"`
Source string `json:"source"`
Depth int `json:"depth"`
Enabled bool `json:"enabled"`
}