mirror of
https://github.com/jimeh/ozu.io.git
synced 2026-02-19 08:06:39 +00:00
13 lines
216 B
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
|
|
}
|