1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
v2fly/app/commander/service.go
Darien Raymond a3f47f4fa2
comments
2018-04-04 00:57:44 +02:00

12 lines
203 B
Go

package commander
import (
"google.golang.org/grpc"
)
// Service is a Commander service.
type Service interface {
// Register registers the service itself to a gRPC server.
Register(*grpc.Server)
}