mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-06 17:36:40 -05:00
7c1ab06206
* remove v2ctl, wv2ray * remove v2ctl, wv2ray build scripts * remove infra/control/main * remove !confonly flag * remove ctlcmd package * remove Confgi.Override func * move commands package into main
28 lines
574 B
Go
28 lines
574 B
Go
package commander
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/reflection"
|
|
"v2ray.com/core/common"
|
|
)
|
|
|
|
// Service is a Commander service.
|
|
type Service interface {
|
|
// Register registers the service itself to a gRPC server.
|
|
Register(*grpc.Server)
|
|
}
|
|
|
|
type reflectionService struct{}
|
|
|
|
func (r reflectionService) Register(s *grpc.Server) {
|
|
reflection.Register(s)
|
|
}
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*ReflectionConfig)(nil), func(ctx context.Context, cfg interface{}) (interface{}, error) {
|
|
return reflectionService{}, nil
|
|
}))
|
|
}
|