Add html, handler and db mock

This commit is contained in:
2020-10-08 12:43:59 +02:00
parent 41c14ff6bb
commit e2aa46c891
14 changed files with 672 additions and 1 deletions

10
routes/routes.go Normal file
View File

@@ -0,0 +1,10 @@
package routes
import (
"github.com/gin-gonic/gin"
"trikotwaschliste/handler"
)
func RoutesInit(router *gin.Engine) {
router.GET("/", handler.MainPage())
}