From 4d97bd80dc6859c91db4d658bbedd932705e2f61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Sat, 8 Jun 2024 20:45:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0respone=E6=9E=9A=E4=B8=BE?= =?UTF-8?q?=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- request.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/request.go b/request.go index c59ddfe..34b3f25 100644 --- a/request.go +++ b/request.go @@ -14,3 +14,10 @@ const ( RequestLocationQuery = "QUERY" // query RequestLocationUriPath = "URI_PATH" // uri路由一部分 ) + +const ( + ResponseLocationHeader = "HEADER" // header + ResponseLocationCookie = "COOKIE" // cookie + ResponseLocationBody = "BODY" // body + ResponseLocationExtension = "EXTENSION" // 扩展信息 +)