Files
MollyBlog/config/mInfo.go
2024-12-19 12:13:56 +08:00

15 lines
362 B
Go

package config
type mInfo struct {
Logo string `yaml:"logo"`
Link string `yaml:"link"`
Title string `yaml:"title"`
Author string `yaml:"author"`
Email string `yaml:"email"`
Language string `yaml:"language"`
Copyright string `yaml:"copyright"`
Description string `yaml:"description"`
Motto []string `yaml:"motto"`
}