feat: add SproutWorkCollect apps

This commit is contained in:
2026-03-13 17:14:37 +08:00
parent 189baa3d59
commit 46afd3149f
54 changed files with 28126 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
package model
// Settings represents the site-wide configuration stored in config/settings.json.
type Settings struct {
SiteName string `json:"网站名字"`
SiteDesc string `json:"网站描述"`
Author string `json:"站长"`
ContactEmail string `json:"联系邮箱"`
ThemeColor string `json:"主题颜色"`
PageSize int `json:"每页作品数量"`
EnableSearch bool `json:"启用搜索"`
EnableCategory bool `json:"启用分类"`
Icp string `json:"备案号"`
Footer string `json:"网站页尾"`
Logo string `json:"网站logo"`
}