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