1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-02 04:53:15 +03:00
2022-05-18 15:29:01 +08:00

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)
}