robotfs/api_other.go
2025-05-12 20:23:33 +08:00

13 lines
179 B
Go

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