forked from ebhomengo/niki
1
0
Fork 0
niki/vendor/github.com/swaggo/swag/enums.go

14 lines
245 B
Go
Raw Normal View History

2024-08-29 03:26:59 +00:00
package swag
const (
enumVarNamesExtension = "x-enum-varnames"
enumCommentsExtension = "x-enum-comments"
)
// EnumValue a model to record an enum consts variable
type EnumValue struct {
key string
Value interface{}
Comment string
}