예제 #1
0
func FromContext(ctx *engine.Context) (*Client, bool) {
	cfg, ok := ctx.Value(ctxKey).(*Client)
	return cfg, ok
}
예제 #2
0
파일: main.go 프로젝트: mnbbrown/cleverconf
func FromContext(ctx *engine.Context) (Config, bool) {
	cfg, ok := ctx.Value(ctxKey).(Config)
	return cfg, ok
}