github.com/golang/mock@v1.6.0/mockgen/internal/tests/custom_package_name/client/v1/client.go (about)

     1  package client
     2  
     3  import "fmt"
     4  
     5  type Client struct{}
     6  
     7  func (c *Client) Greet(in GreetInput) string {
     8  	return fmt.Sprintf("Hello, %s!", in.Name)
     9  }
    10  
    11  type GreetInput struct {
    12  	Name string
    13  }