Initial commit

This commit is contained in:
nemunaire 2018-06-22 00:29:12 +02:00
commit 16d2285ff3
6 changed files with 318 additions and 0 deletions

11
api/router.go Normal file
View file

@ -0,0 +1,11 @@
package api
import (
"github.com/julienschmidt/httprouter"
)
var router = httprouter.New()
func Router() *httprouter.Router {
return router
}