mirror of
https://github.com/ggicci/httpin.git
synced 2024-11-28 08:49:05 +02:00
8 lines
237 B
Go
8 lines
237 B
Go
package httpin
|
|
|
|
// formValueExtractor implements the "form" executor who extracts values from
|
|
// the forms of an HTTP request.
|
|
func formValueExtractor(ctx *DirectiveContext) error {
|
|
return extractFromKVS(ctx, ctx.Request.Form, false)
|
|
}
|