15 lines
207 B
Go
15 lines
207 B
Go
|
package controllers
|
||
|
|
||
|
import (
|
||
|
"Cloudreve/serializer"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
// Ping 状态检查页面
|
||
|
func Ping(c *gin.Context) {
|
||
|
c.JSON(200, serializer.Response{
|
||
|
Code: 0,
|
||
|
Msg: "Pong",
|
||
|
})
|
||
|
}
|