qa: New service to handle QA testing by students

This commit is contained in:
nemunaire 2020-09-08 12:50:41 +02:00
parent a0155c6deb
commit a237936feb
37 changed files with 1476 additions and 0 deletions

11
qa/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
}