7 lines
93 B
Go
Raw Normal View History

2024-04-10 22:10:09 +08:00
package model
type Tag struct {
Name string `json:"name"`
Tags []string `json:"tags"`
}