mirror of
https://github.com/foomo/gotsrpc.git
synced 2026-04-18 03:34:28 +00:00
13 lines
130 B
Go
13 lines
130 B
Go
package service
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type Handler struct{}
|
|
|
|
func (h *Handler) Hello(v string) string {
|
|
fmt.Println(v)
|
|
return v
|
|
}
|