You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
198 B
14 lines
198 B
3 years ago
|
/*
|
||
|
* @desc:context 相关常量
|
||
|
*
|
||
|
* <yxh669@qq.com>
|
||
|
* @Date: 2022/3/16 14:52
|
||
|
*/
|
||
|
|
||
|
package consts
|
||
|
|
||
|
const (
|
||
|
// CtxKey 上下文变量存储键名,前后端系统共享
|
||
|
CtxKey = "GFastContext"
|
||
|
)
|