| package clashapivar (	CtxKeyProxyName    = contextKey("proxy name")	CtxKeyProviderName = contextKey("provider name")	CtxKeyProxy        = contextKey("proxy")	CtxKeyProvider     = contextKey("provider"))type contextKey stringfunc (c contextKey) String() string {	return "clash context key " + string(c)}
 |