clash/hub/route/ctxkeys.go
2018-11-21 13:47:46 +08:00

13 lines
212 B
Go

package route
var (
CtxKeyProxyName = contextKey("proxy name")
CtxKeyProxy = contextKey("proxy")
)
type contextKey string
func (c contextKey) String() string {
return "clash context key " + string(c)
}