mirror of
https://github.com/yv1ing/MollyBlog.git
synced 2025-09-16 14:53:45 +08:00
14 lines
285 B
Go
14 lines
285 B
Go
package config
|
|
|
|
type mFriend struct {
|
|
Title string `json:"title"`
|
|
List []mFriendItem `json:"list"`
|
|
}
|
|
|
|
type mFriendItem struct {
|
|
Name string `yaml:"name"`
|
|
Link string `yaml:"link"`
|
|
Avatar string `yaml:"avatar"`
|
|
Description string `yaml:"description"`
|
|
}
|