This commit is contained in:
2026-03-19 18:54:33 +08:00
parent 22b7941dc6
commit bbd6f9fa81
5 changed files with 280 additions and 0 deletions

11
internal/ping.go Normal file
View File

@@ -0,0 +1,11 @@
package internal
import (
"git.apinb.com/bsm-sdk/core/infra"
"github.com/gin-gonic/gin"
)
func Ping(ctx *gin.Context) {
infra.Response.Success(ctx, "OK")
return
}