mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
13 lines
212 B
Go
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)
|
||
|
}
|