router

package
v0.0.0-...-af59c4b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 13, 2019 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Route

type Route interface {
	// Handler returns the raw function to create the http handler.
	Handler() api.Function
	// Method returns the http method that the route responds to.
	Method() string
	// Path returns the subpath where the route responds to.
	Path() string
}

Route defines an individual API route in the server.

func NewGetRoute

func NewGetRoute(path string, handler api.Function) Route

func NewPostRoute

func NewPostRoute(path string, handler api.Function) Route

func NewRoute

func NewRoute(method string, path string, handler api.Function) Route

type Router

type Router interface {
	// Routes returns the list of routes to add to the server.
	Routes() []Route

	Close()
}

Router defines an interface to specify a group of routes to add to the server.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL