From fc4470a2cebcca4a44b59c6b25811e91a9b4bf09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Mon, 22 Apr 2024 11:06:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20request=20location?= =?UTF-8?q?=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- request.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 request.go 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路由一部分 +)