feat(custom): custom sidebar items

This commit is contained in:
Aaron Liu
2025-07-15 10:41:13 +08:00
parent 3cda4d1ef7
commit ca57ca1ba0
5 changed files with 28 additions and 9 deletions

View File

@@ -209,3 +209,9 @@ type AvatarProcess struct {
MaxFileSize int64 `json:"max_file_size"`
MaxWidth int `json:"max_width"`
}
type CustomNavItem struct {
Icon string `json:"icon"`
Name string `json:"name"`
URL string `json:"url"`
}