1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-16 09:58:33 +02:00
This commit is contained in:
asim 2024-07-07 18:40:24 +01:00
parent 3d5f87c01b
commit 563e0d265d
2 changed files with 0 additions and 16 deletions

View File

@ -11,7 +11,6 @@ import (
import (
context "context"
api "go-micro.dev/v5/api"
client "go-micro.dev/v5/client"
server "go-micro.dev/v5/server"
)
@ -22,17 +21,10 @@ var _ = fmt.Errorf
var _ = math.Inf
// Reference imports to suppress errors if they are not otherwise used.
var _ api.Endpoint
var _ context.Context
var _ client.Option
var _ server.Option
// Api Endpoints for Debug service
func NewDebugEndpoints() []*api.Endpoint {
return []*api.Endpoint{}
}
// Client API for Debug service
type DebugService interface {

View File

@ -11,7 +11,6 @@ import (
import (
context "context"
api "go-micro.dev/v5/api"
client "go-micro.dev/v5/client"
server "go-micro.dev/v5/server"
)
@ -28,17 +27,10 @@ var _ = math.Inf
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// Reference imports to suppress errors if they are not otherwise used.
var _ api.Endpoint
var _ context.Context
var _ client.Option
var _ server.Option
// Api Endpoints for Server service
func NewServerEndpoints() []*api.Endpoint {
return []*api.Endpoint{}
}
// Client API for Server service
type ServerService interface {