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

11 lines
228 B
Go

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