mirror of
https://github.com/yv1ing/MollyBlog.git
synced 2025-09-16 14:53:45 +08:00
12 lines
171 B
Go
12 lines
171 B
Go
package config
|
|
|
|
type mMenu struct {
|
|
Items []mItem `yaml:"items"`
|
|
}
|
|
|
|
type mItem struct {
|
|
Name string `yaml:"name"`
|
|
Icon string `yaml:"icon"`
|
|
Url string `yaml:"url"`
|
|
}
|