mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-08 03:07:47 -05:00
8 lines
108 B
Go
8 lines
108 B
Go
|
package extension
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type ContextReceiver interface {
|
||
|
InjectContext(ctx context.Context)
|
||
|
}
|