1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 07:43:29 +00:00
Beego/param/options.go

26 lines
425 B
Go
Raw Normal View History

2017-04-21 12:26:41 +00:00
package param
2017-04-22 22:33:50 +00:00
import (
"fmt"
)
var IsRequired MethodParamOption = func(p *MethodParam) {
p.required = true
}
2017-04-21 12:26:41 +00:00
var InHeader MethodParamOption = func(p *MethodParam) {
p.location = header
}
2017-04-22 22:33:50 +00:00
var InBody MethodParamOption = func(p *MethodParam) {
p.location = body
2017-04-21 12:26:41 +00:00
}
func Default(defValue interface{}) MethodParamOption {
return func(p *MethodParam) {
2017-04-22 22:33:50 +00:00
if defValue != nil {
2017-04-23 23:35:04 +00:00
p.defValue = fmt.Sprint(defValue)
2017-04-22 22:33:50 +00:00
}
2017-04-21 12:26:41 +00:00
}
}