robotfs/api_other.go
2025-05-15 18:09:59 +08:00

13 lines
181 B
Go

package main
import (
"gosvc/httpserver"
)
func (s *Service) HandlePing(
req *httpserver.Request,
resp *httpserver.Response,
) *httpserver.Response {
return resp.OK("pong")
}