gin/request/init.go

21 lines
318 B
Go
Raw Normal View History

2022-07-03 00:56:37 +08:00
// Package request ...
//
// Description : request ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2022-07-03 00:52
package request
var (
// Form 表单相关操作
Form *form
// ContentType 请求类型
ContentType *contentType
)
func init() {
Form = &form{}
ContentType = &contentType{}
}