postmoogle/vendor/github.com/swaggo/swag/enums.go
2024-08-20 22:56:56 +03:00

13 lines
245 B
Go

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
}