1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-03 05:23:16 +03:00

20 lines
296 B
Go
Raw Normal View History

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