gin/binding/uri.go

21 lines
465 B
Go
Raw Normal View History

// Copyright 2018 Gin Core Team. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package binding
2019-04-17 17:10:21 +03:00
import "github.com/gin-gonic/gin/binding/common"
type uriBinding struct{}
func (uriBinding) Name() string {
return "uri"
}
func (uriBinding) BindUri(m map[string][]string, obj interface{}) error {
if err := mapUri(obj, m); err != nil {
return err
}
2019-04-17 17:10:21 +03:00
return common.Validate(obj)
}