|
|
@@ -9,12 +9,11 @@ import (
|
|
|
// V2rayKey is the key type of Instance in Context, exported for test.
|
|
|
type V2rayKey int
|
|
|
|
|
|
-// V2rayKeyValue is the key value of Instance in Context, exported for test.
|
|
|
-const V2rayKeyValue V2rayKey = 1
|
|
|
+const v2rayKey V2rayKey = 1
|
|
|
|
|
|
// FromContext returns an Instance from the given context, or nil if the context doesn't contain one.
|
|
|
func FromContext(ctx context.Context) *Instance {
|
|
|
- if s, ok := ctx.Value(V2rayKeyValue).(*Instance); ok {
|
|
|
+ if s, ok := ctx.Value(v2rayKey).(*Instance); ok {
|
|
|
return s
|
|
|
}
|
|
|
return nil
|