github.com/segakazzz/buffalo@v0.16.22-0.20210119082501-1f52048d3feb/binding/bindable.go (about) 1 package binding 2 3 import "net/http" 4 5 // Bindable when implemented, on a type 6 // will override any Binders that have been 7 // configured when using buffalo#Context.Bind 8 type Bindable interface { 9 Bind(*http.Request) error 10 }