summaryrefslogtreecommitdiff
path: root/vendor/github.com/golang/mock/mockgen/tests/custom_package_name/client/v1/client.go
blob: fc799d9c2f1760eb01052ba6ad0ef4ef290701f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package client

import "fmt"

type Client struct{}

func (c *Client) Greet(in GreetInput) string {
	return fmt.Sprintf("Hello, %s!", in.Name)
}

type GreetInput struct {
	Name string
}