Files
ozu.io/web/router.go

13 lines
216 B
Go

package web
import (
"github.com/buaazp/fasthttprouter"
"github.com/jimeh/ozu.io/shortner"
)
func NewRouter(shortner *shortner.Shortner) *fasthttprouter.Router {
router := fasthttprouter.New()
return router
}