routes

package
v0.0.0-...-176a01d Latest Latest
Warning

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

Go to latest
Published: Jan 22, 2017 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Routes = []Route{
	Route{
		"CreateUser",
		"POST",
		"/user",
		echo.HandlerFunc(user.Create),
		beforeHandlers{},
	},
	Route{
		"CreateSession",
		"POST",
		"/session",
		echo.HandlerFunc(session.Create),
		beforeHandlers{},
	},
	Route{
		"Upgrade Socket",
		"GET",
		"/socket",
		sock.Listen,
		beforeHandlers{mw.UserRequired},
	},
	Route{
		"MessageChannel",
		"POST",
		"/channel/:id",
		sock.HTTPForward,
		beforeHandlers{},
	},
}

Routes - Array of routes

Functions

This section is empty.

Types

type Route

type Route struct {
	Name        string
	Method      string
	Pattern     string
	HandlerFunc echo.HandlerFunc
	Before      beforeHandlers
}

Route - Struct containing all the info to initialize a route

Jump to

Keyboard shortcuts

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