Versions in this module Expand all Collapse all v1 v1.13.0 Dec 24, 2023 Changes in this version + var DefaultServer = NewServer() + type Client struct + func NewClient(path string) *Client + func (c *Client) Call(name string, args ...string) (url.Values, error) + func (c *Client) CallWithValues(name string, input url.Values) (url.Values, error) + type Handler func(tr *trace.Trace, input url.Values) (url.Values, error) + type Server struct + func NewServer() *Server + func (s *Server) Close() error + func (s *Server) ListenAndServe(path string) error + func (s *Server) Register(name string, handler Handler)