Versions in this module Expand all Collapse all v1 v1.0.2 Sep 27, 2023 v1.0.1 May 23, 2023 Changes in this version + type Client struct + Client *grpc.ClientConn + Config ClientConfig + Name string + func (c *Client) NewClient(fn ClientFn) error + type ClientConfig struct + Address string + AutoClose bool + Timeout time.Duration + Tracing bool + type ClientFn func(conn *grpc.ClientConn, ctx context.Context) (err error) + type Server struct + Config ServerConfig + Name string + Server *grpc.Server + func (s *Server) NewServer(fn ServerFnc) error + type ServerConfig struct + Address string + Tracing bool + type ServerFnc func(server *grpc.Server)