checkHome/api/router.go

12 lines
147 B
Go
Raw Normal View History

2018-06-21 22:29:12 +00:00
package api
import (
"github.com/julienschmidt/httprouter"
)
var router = httprouter.New()
func Router() *httprouter.Router {
return router
}