v2ray-core/app/commander/service.go

14 lines
224 B
Go
Raw Normal View History

2019-02-01 20:08:21 +01:00
// +build !confonly
2018-02-08 23:24:35 +01:00
package commander
import (
"google.golang.org/grpc"
)
2018-04-04 00:57:44 +02:00
// Service is a Commander service.
2018-02-08 23:24:35 +01:00
type Service interface {
2018-04-04 00:57:44 +02:00
// Register registers the service itself to a gRPC server.
2018-02-08 23:24:35 +01:00
Register(*grpc.Server)
}