11 lines
176 B
Go
11 lines
176 B
Go
package apps
|
|
|
|
import (
|
|
"context"
|
|
"github.com/cloudwego/hertz/pkg/app"
|
|
)
|
|
|
|
func Ping(ctx context.Context, c *app.RequestContext) {
|
|
c.Data(200, "text/plain", []byte("pong"))
|
|
}
|