Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
app.go 465 B
package client

import (
	apb "code.fbi.h-da.de/danet/gosdn/api/go/gosdn/app"
	"google.golang.org/grpc"
)

// AppClient returns a client for the gRPC App service. It takes
// the address of the gRPC endpoint and optional grpc.DialOption
// as argument.
func AppClient(addr string, opts ...grpc.DialOption) (apb.AppServiceClient, error) {
	conn, err := grpc.NewClient(addr, opts...)
	if err != nil {
		return nil, err
	}
	return apb.NewAppServiceClient(conn), nil
}