mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-04 11:03:58 +00:00
12 lines
212 B
Go
12 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)
|
|
}
|