代码拉取完成,页面将自动刷新
package luchen
import (
"context"
"time"
)
type (
requestEndpointCtxKey struct{}
protocolCtxKey struct{}
methodCtxKey struct{}
requestStartTimeCtxKey struct{}
)
// RequestEndpoint 请求端点
func RequestEndpoint(ctx context.Context) string {
val, ok := ctx.Value(requestEndpointCtxKey{}).(string)
if !ok {
return ""
}
return val
}
func withRequestEndpoint(ctx context.Context, action string) context.Context {
return context.WithValue(ctx, requestEndpointCtxKey{}, action)
}
// RequestProtocol 请求协议
func RequestProtocol(ctx context.Context) string {
val, ok := ctx.Value(protocolCtxKey{}).(string)
if !ok {
return ""
}
return val
}
func withRequestProtocol(ctx context.Context, protocol string) context.Context {
return context.WithValue(ctx, protocolCtxKey{}, protocol)
}
// RequestMethod 请求方法
func RequestMethod(ctx context.Context) string {
val, ok := ctx.Value(methodCtxKey{}).(string)
if !ok {
return ""
}
return val
}
func withMethod(ctx context.Context, method string) context.Context {
return context.WithValue(ctx, methodCtxKey{}, method)
}
// RequestStartTime 请求开始时间
func RequestStartTime(ctx context.Context) time.Time {
return ctx.Value(requestStartTimeCtxKey{}).(time.Time)
}
func withRequestStartTime(ctx context.Context, t time.Time) context.Context {
return context.WithValue(ctx, requestStartTimeCtxKey{}, t)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。