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