-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathroute.go
33 lines (22 loc) · 901 Bytes
/
route.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package barf
import "github.com/opensaucerer/barf/router"
// Get registers a route with the GET HTTP method
var Get = router.Get
// Post registers a route with the POST HTTP method
var Post = router.Post
// Put registers a route with the PUT HTTP method
var Put = router.Put
// Patch registers a route with the PATCH HTTP method
var Patch = router.Patch
// Delete registers a route with the DELETE HTTP method
var Delete = router.Delete
// // Head registers a route with the HEAD HTTP method
// var Head = router.Head
// // Options registers a route with the OPTIONS HTTP method
// var Options = router.Options
// Any registers a route with all HTTP methods
var Any = router.Any
// RetroFrame returns a new RetroFrame instance registered against the given entry path.
var RetroFrame = router.RetroFrame
// SubRoute is the type of a barf RetroFrame instance.
type SubRoute = router.SubRoute