diff --git a/request.go b/request.go new file mode 100644 index 0000000..c59ddfe --- /dev/null +++ b/request.go @@ -0,0 +1,16 @@ +// Package consts ... +// +// Description : consts ... +// +// Author : go_developer@163.com<白茶清欢> +// +// Date : 2024-04-22 11:04 +package consts + +const ( + RequestLocationHeader = "HEADER" // header + RequestLocationCookie = "COOKIE" // cookie + RequestLocationBody = "BODY" // body + RequestLocationQuery = "QUERY" // query + RequestLocationUriPath = "URI_PATH" // uri路由一部分 +)