mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-02 19:19:20 +02:00
8 lines
108 B
Go
8 lines
108 B
Go
|
package extension
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type ContextReceiver interface {
|
||
|
InjectContext(ctx context.Context)
|
||
|
}
|