Blog/config/user.go

48 lines
956 B
Go
Raw Permalink Normal View History

2024-03-21 07:25:12 +00:00
package config
type userConfig struct {
SiteName string `json:"siteName"`
Author string `json:"author"`
2024-05-03 10:34:32 +00:00
Qq string `json:"qq"`
2024-03-21 07:25:12 +00:00
Icp string `json:"icp"`
TimeLayout string `json:"timeLayout"`
Port int `json:"port"`
WebHookSecret string `json:"webHookSecret"`
CategoryDisplayQuantity int `json:"categoryDisplayQuantity"`
UtterancesRepo string `json:"utterancesRepo"`
2024-03-28 11:45:25 +00:00
Gitalk_ClientID string `json:"gitalk_clientID"`
Gitalk_ClientSecret string `json:"gitalk_clientSecret"`
Gitalk_Repo string `json:"gitalk_repo"`
Gitalk_Owner string `json:"gitalk_owner"`
2024-03-21 07:25:12 +00:00
PageSize int `json:"pageSize"`
DescriptionLen int `json:"descriptionLen"`
DocumentGitUrl string `json:"documentGitUrl"`
HtmlKeywords string `json:"htmlKeywords"`
HtmlDescription string `json:"htmlDescription"`
ThemePath string `json:"themePath"`
ThemeColor string `json:"themeColor"`
ThemeOption []string `json:"themeOption"`
Dashboard string `json:"dashboard"`
}