Documentation ¶ Index ¶ type Client func New(c *Config) *Client func (c *Client) Inject(opts ...Option) *Client func (c *Client) Routes(groups ...Groups) func (c *Client) Run() (err error) func (c *Client) Use(args ...interface{}) *Client type Config type Groups type Option type Route Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Client ¶ type Client struct { // contains filtered or unexported fields } func New ¶ func New(c *Config) *Client func (*Client) Inject ¶ func (c *Client) Inject(opts ...Option) *Client func (*Client) Routes ¶ func (c *Client) Routes(groups ...Groups) func (*Client) Run ¶ func (c *Client) Run() (err error) func (*Client) Use ¶ func (c *Client) Use(args ...interface{}) *Client type Config ¶ type Config struct { Port string } type Groups ¶ type Groups struct { Prefix string Route []Route } type Option ¶ type Option func(c *Client) type Route ¶ type Route struct { Method string Path string Handler func(ctx *fiber.Ctx) error } Source Files ¶ View all Source files http.gomethods.gotypes.go Directories ¶ Show internal Expand all Path Synopsis middlewares Click to show internal directories. Click to hide internal directories.