木木的木头 f4689d073c v2.2.0
2023-09-08 02:11:00 +08:00

14 lines
284 B
Go

package controllers
import (
log "github.com/sirupsen/logrus"
"net/http"
"pmail/dto/response"
"pmail/utils/context"
)
func Ping(ctx *context.Context, w http.ResponseWriter, req *http.Request) {
response.NewSuccessResponse("pong").FPrint(w)
log.WithContext(ctx).Info("pong")
}