mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 02:04:09 +00:00
12 lines
130 B
Go
12 lines
130 B
Go
package handler
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Ping(c *gin.Context) {
|
|
c.JSON(200, gin.H{
|
|
"message": "ok",
|
|
})
|
|
}
|