gotsrpc/example/monitor/service/handler.go
Kevin Franklin Kim 7faf7e4c98 feat: add monitor
2022-05-04 11:16:04 +02:00

13 lines
130 B
Go

package service
import (
"fmt"
)
type Handler struct{}
func (h *Handler) Hello(v string) string {
fmt.Println(v)
return v
}