| 1234567891011121314151617 | package coreimport (	"context")type key intconst v2rayKey key = 1// FromContext returns a 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(v2rayKey).(*Instance); ok {		return s	}	return nil}
 |