mirror of
https://github.com/yv1ing/MollyBlog.git
synced 2025-09-16 14:53:45 +08:00
14 lines
328 B
Go
14 lines
328 B
Go
package config
|
|
|
|
type mInfo struct {
|
|
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"`
|
|
}
|