mirror of
https://gitee.com/johng/gf
synced 2026-07-04 04:52:48 +08:00
16 lines
537 B
Go
16 lines
537 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// 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.
|
|
|
|
// Package gctx wraps context.Context and provides extra context features.
|
|
package gctx
|
|
|
|
import "context"
|
|
|
|
type (
|
|
Ctx = context.Context // Ctx is short name alias for context.Context.
|
|
StrKey string // StrKey is a type for warps basic type string as context key.
|
|
)
|