Files
trikotwaschliste/routes/routes.go

11 lines
161 B
Go

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