2018-11-22 04:29:48 +03:00
|
|
|
// 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
|
|
|
|
|
|
|
|
type uriBinding struct{}
|
|
|
|
|
|
|
|
func (uriBinding) Name() string {
|
|
|
|
return "uri"
|
|
|
|
}
|
|
|
|
|
2022-03-21 04:43:17 +03:00
|
|
|
func (uriBinding) BindUri(m map[string][]string, obj any) error {
|
2021-08-19 10:46:31 +03:00
|
|
|
if err := mapURI(obj, m); err != nil {
|
2018-11-22 04:29:48 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return validate(obj)
|
|
|
|
}
|