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
|
|
|
}
|