personal-website/approutes/personalPropsRoute/personalPropsRoute.go

14 lines
277 B
Go
Raw Normal View History

2023-03-15 12:32:41 +00:00
package personalpropsroute
import (
"github.com/gin-gonic/gin"
)
func Route(route *gin.RouterGroup) {
2023-03-17 01:16:51 +00:00
// route.GET("/test", func(ctx *gin.Context) {
// test := persPropsApp.Render()
// ctx.HTML(http.StatusOK, "personal-properties.html", gin.H{"books": test})
// })
2023-03-15 12:32:41 +00:00
}