context.go 255 B

12345678910111213
  1. /*
  2. * @desc:context 相关常量
  3. * @company:云南奇讯科技有限公司
  4. * @Author: yixiaohu<yxh669@qq.com>
  5. * @Date: 2022/3/16 14:52
  6. */
  7. package consts
  8. const (
  9. // CtxKey 上下文变量存储键名,前后端系统共享
  10. CtxKey = "GFastContext"
  11. )