improved output

This commit is contained in:
Mat Ryer
2016-08-29 13:09:34 +01:00
parent 6a2af83edc
commit da0b19b274
2 changed files with 15 additions and 1 deletions

View File

@@ -10,6 +10,6 @@ type Person struct {
}
type PersonStore interface {
Get(context.Context, string) (*Person, error)
Get(ctx context.Context, id string) (*Person, error)
Create(ctx context.Context, person *Person, confirm bool) error
}