2019-11-05 12:31:22 +08:00
|
|
|
package controllers
|
|
|
|
|
|
|
|
import (
|
2019-11-06 22:35:31 +08:00
|
|
|
"Cloudreve/pkg/serializer"
|
2019-11-05 12:31:22 +08:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Ping 状态检查页面
|
|
|
|
func Ping(c *gin.Context) {
|
|
|
|
c.JSON(200, serializer.Response{
|
|
|
|
Code: 0,
|
|
|
|
Msg: "Pong",
|
|
|
|
})
|
|
|
|
}
|