mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-20 08:49:16 +08:00
11 lines
188 B
Go
11 lines
188 B
Go
|
package v2
|
||
|
|
||
|
import (
|
||
|
"github.com/1Panel-dev/1Panel/agent/app/api/v2/helper"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func (b *BaseApi) CheckHealth(c *gin.Context) {
|
||
|
helper.SuccessWithOutData(c)
|
||
|
}
|