mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
13 lines
354 B
Go
13 lines
354 B
Go
package service
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type Service interface {
|
|
InlineStruct(w http.ResponseWriter, r *http.Request) (e InlineStruct)
|
|
InlineStructPtr(w http.ResponseWriter, r *http.Request) (e InlineStructPtr)
|
|
UnionString(w http.ResponseWriter, r *http.Request) (e UnionString)
|
|
UnionStruct(w http.ResponseWriter, r *http.Request) (e UnionStruct)
|
|
}
|