moq/example/example.go
2016-08-29 13:00:18 +01:00

16 lines
266 B
Go

package example
import "context"
type Person struct {
ID string
Name string
Company string
Website string
}
type PersonStore interface {
Get(context.Context, string) (*Person, error)
Create(ctx context.Context, person *Person, confirm bool) error
}