Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 217 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 217 Bytes

##Test-gen The utility generates test stubs from the interface.

//go:generate test-gen TestClient github.com/test/test.go
package test

type Client interface {
	Get() (string, error)
	Set(v string) error
}