moq/example/example.go

16 lines
266 B
Go
Raw Normal View History

2016-08-29 14:00:18 +02:00
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
}