mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
15 lines
314 B
Go
15 lines
314 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 "mihomo context key " + string(c)
|
|
}
|