after fork

This commit is contained in:
2023-04-11 22:43:48 +02:00
commit 6486bfd1c8
33 changed files with 3366 additions and 0 deletions

10
constants/bindings.go Normal file
View File

@ -0,0 +1,10 @@
package constants
const (
QUERY = "query"
FORM = "form"
URI = "uri"
HEADER = "header"
COOKIE = "cookie"
JSON = "json"
)

9
constants/tags.go Normal file
View File

@ -0,0 +1,9 @@
package constants
const (
DEFAULT = "default"
VALIDATE = "validate"
DESCRIPTION = "description"
EMBED = "embed"
EXAMPLE = "example"
)