gotsrpc/example/types/service.go
2025-09-18 23:22:52 +02:00

11 lines
188 B
Go

package service
import (
"net/http"
)
type Service interface {
String(w http.ResponseWriter, r *http.Request, a string)
Strings(w http.ResponseWriter, r *http.Request, a, b string)
}