Files
gf/net/ghttp/ghttp.go

15 lines
515 B
Go
Raw Normal View History

// Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
2018-01-03 10:38:53 +08:00
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
2018-01-03 10:38:53 +08:00
2019-06-18 20:58:47 +08:00
// Package ghttp provides powerful http server and simple client implements.
2018-01-03 10:38:53 +08:00
package ghttp
var (
// paramTagPriority is the priority tag array for request parameter
// to struct field mapping.
paramTagPriority = []string{"param", "params", "p"}
)