kefu/middleware/check_mysql.go

11 lines
133 B
Go
Raw Permalink Normal View History

2024-12-10 02:50:12 +00:00
package middleware
import (
"github.com/gin-gonic/gin"
"kefu/models"
)
func CheckMysql(c *gin.Context) {
models.CheckModels()
}