Documentation ¶ Index ¶ Variables type Client func NewClient() *Client func (c *Client) PostJSON(url string, body interface{}) (*fasthttp.Response, error) type Server func New(conf *config.AppConfig, router func(router fiber.Router), logger log.Logger) (*Server, error) func (s *Server) Start() error func (s *Server) Stop() error Constants ¶ This section is empty. Variables ¶ View Source var ProviderSet = wire.NewSet(New, NewClient) Functions ¶ This section is empty. Types ¶ type Client ¶ type Client struct{} func NewClient ¶ func NewClient() *Client func (*Client) PostJSON ¶ func (c *Client) PostJSON(url string, body interface{}) (*fasthttp.Response, error) type Server ¶ type Server struct { // contains filtered or unexported fields } func New ¶ func New(conf *config.AppConfig, router func(router fiber.Router), logger log.Logger) (*Server, error) func (*Server) Start ¶ func (s *Server) Start() error func (*Server) Stop ¶ func (s *Server) Stop() error Source Files ¶ View all Source files client.go server.go Click to show internal directories. Click to hide internal directories.