mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
15 lines
313 B
Go
15 lines
313 B
Go
package route
|
|
|
|
var (
|
|
CtxKeyProxyName = contextKey("proxy name")
|
|
CtxKeyProviderName = contextKey("provider name")
|
|
CtxKeyProxy = contextKey("proxy")
|
|
CtxKeyProvider = contextKey("provider")
|
|
)
|
|
|
|
type contextKey string
|
|
|
|
func (c contextKey) String() string {
|
|
return "clash context key " + string(c)
|
|
}
|