mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +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
|
|
}
|