mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-02 19:19:20 +02:00
19 lines
295 B
Go
19 lines
295 B
Go
|
package extension
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/golang/protobuf/proto"
|
||
|
"github.com/xtls/xray-core/features"
|
||
|
)
|
||
|
|
||
|
type Observatory interface {
|
||
|
features.Feature
|
||
|
|
||
|
GetObservation(ctx context.Context) (proto.Message, error)
|
||
|
}
|
||
|
|
||
|
func ObservatoryType() interface{} {
|
||
|
return (*Observatory)(nil)
|
||
|
}
|