- Đăng kí hàm xử lý request
func logTime(c *gin.Context) {
log.Println("Current time:", time.Now())
// Gọi hàm xử lý tiếp theo trong chuỗi middleware
c.Next()
}
- Đăng kí middleware cho tất cả các route
router := gin.Default()
router.LoadHTMLGlob("view/*.html")
router.Use(logTime)
router.GET("/", homePage)
router.GET("/about", aboutPage)