github.com/Uhtred009/v2ray-core-1@v4.31.2+incompatible/app/commander/service.go (about) 1 // +build !confonly 2 3 package commander 4 5 import ( 6 "google.golang.org/grpc" 7 ) 8 9 // Service is a Commander service. 10 type Service interface { 11 // Register registers the service itself to a gRPC server. 12 Register(*grpc.Server) 13 }