improved report card

This commit is contained in:
Mat Ryer
2016-11-06 12:37:55 +00:00
parent 6b7993bc61
commit b76739db6c
2 changed files with 3 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import "context"
//go:generate moq -out mockpersonstore_test.go . PersonStore
// Person represents a real person.
type Person struct {
ID string
Name string
@@ -11,6 +12,7 @@ type Person struct {
Website string
}
// PersonStore provides access to Person objects.
type PersonStore interface {
Get(ctx context.Context, id string) (*Person, error)
Create(ctx context.Context, person *Person, confirm bool) error