fix: revert workflow and binding changes to match upstream

This commit is contained in:
mehrdadbn9 2026-02-12 23:13:06 +03:30
parent e3bead36c1
commit d3bec39bd7
2 changed files with 12 additions and 13 deletions

View File

@ -7,7 +7,6 @@ on:
pull_request: pull_request:
branches: branches:
- master - master
workflow_dispatch:
permissions: permissions:
contents: read contents: read

View File

@ -71,18 +71,18 @@ var Validator StructValidator = &defaultValidator{}
// These implement the Binding interface and can be used to bind the data // These implement the Binding interface and can be used to bind the data
// present in the request to struct instances. // present in the request to struct instances.
var ( var (
JSON = jsonBinding{} JSON = jsonBinding{}
XML = xmlBinding{} XML = xmlBinding{}
Form = formBinding{} Form = formBinding{}
Query = queryBinding{} Query = queryBinding{}
FormPost = formPostBinding{} FormPost = formPostBinding{}
FormMultipart = formMultipartBinding{} FormMultipart = formMultipartBinding{}
ProtoBuf = protobufBinding{} ProtoBuf = protobufBinding{}
YAML = yamlBinding{} YAML = yamlBinding{}
Uri = uriBinding{} Uri = uriBinding{}
Header = headerBinding{} Header = headerBinding{}
TOML = tomlBinding{} TOML = tomlBinding{}
Plain = plainBinding{} Plain = plainBinding{}
BSON BindingBody = bsonBinding{} BSON BindingBody = bsonBinding{}
) )