1
0
mirror of https://github.com/volatiletech/authboss.git synced 2024-11-24 08:42:17 +02:00
authboss/router.go
2018-03-09 16:02:35 -08:00

15 lines
277 B
Go

package authboss
import (
"net/http"
)
// Router can register routes to later be used by the web application
type Router interface {
http.Handler
Get(path string, handler http.Handler)
Post(path string, handler http.Handler)
Delete(path string, handler http.Handler)
}