1 Star 1 Fork 0

eatmoreapple/juice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
param.go 728 Bytes
一键复制 编辑 原始数据 按行查看 历史
package juice
import (
"context"
"github.com/go-juicedev/juice/eval"
)
// Param is an alias of eval.Param.
type Param = eval.Param
// Parameter is an alias of eval.Parameter.
type Parameter = eval.Parameter
// H is an alias of eval.H.
type H = eval.H
// ParamFromContext returns the parameter from the context.
func ParamFromContext(ctx context.Context) Param {
return eval.ParamFromContext(ctx)
}
// CtxWithParam returns a new context with the parameter.
func CtxWithParam(ctx context.Context, param Param) context.Context {
return eval.CtxWithParam(ctx, param)
}
// newGenericParam returns a new generic parameter.
func newGenericParam(v any, wrapKey string) Parameter {
return eval.NewGenericParam(v, wrapKey)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/eatmoreapple/juice.git
git@gitee.com:eatmoreapple/juice.git
eatmoreapple
juice
juice
main

搜索帮助