增加 request location定义

This commit is contained in:
白茶清欢 2024-04-22 11:06:54 +08:00
parent 9d95624690
commit fc4470a2ce
1 changed files with 16 additions and 0 deletions

16
request.go Normal file
View File

@ -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路由一部分
)