2019-02-02 16:18:25 +08:00
|
|
|
// 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,
|
2019-02-02 16:18:25 +08:00
|
|
|
// 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
|
2019-07-03 22:09:35 +08:00
|
|
|
|
|
|
|
|
var (
|
2019-12-19 15:14:05 +08:00
|
|
|
// paramTagPriority is the priority tag array for request parameter
|
|
|
|
|
// to struct field mapping.
|
2019-07-10 23:04:04 +08:00
|
|
|
paramTagPriority = []string{"param", "params", "p"}
|
2019-07-03 22:09:35 +08:00
|
|
|
)
|