增加说说 影集支持模块

This commit is contained in:
JiXieShi
2024-05-03 18:34:32 +08:00
parent f4597906c0
commit 31c541e1c2
10 changed files with 412 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ import (
type Config struct {
userConfig
systemConfig
memosConfig
}
//

8
config/memos.go Normal file
View File

@@ -0,0 +1,8 @@
package config
type memosConfig struct {
MemosUser string `json:"memos_user"`
MemosURL string `json:"memos_url"`
MemosAlbumTag string `json:"memos_album_tag"`
MemosTalkTag string `json:"memos_talk_tag"`
}

View File

@@ -5,6 +5,8 @@ type userConfig struct {
Author string `json:"author"`
Qq string `json:"qq"`
Icp string `json:"icp"`
TimeLayout string `json:"timeLayout"`