You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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) |
|
}
|
|
|