mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
11 lines
228 B
Go
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) {}
|