golint fixes

This commit is contained in:
Mat Ryer 2017-08-02 16:05:40 +01:00
parent c3ea983498
commit bd3bf33613
2 changed files with 3 additions and 1 deletions

View File

@ -177,7 +177,7 @@ func newImporter(source string) types.Importer {
// }
// stripGopath teks the directory to a package and remove the gopath to get the
// cannonical package name
// canonical package name.
func stripGopath(p string) string {
for _, gopath := range gopaths() {
p = strings.TrimPrefix(p, path.Join(gopath, "src")+"/")

View File

@ -2,6 +2,7 @@ package example
import "context"
// Person is a person.
type Person struct {
ID string
Name string
@ -9,6 +10,7 @@ type Person struct {
Website string
}
// PersonStore stores people.
type PersonStore interface {
Get(ctx context.Context, id string) (*Person, error)
Create(ctx context.Context, person *Person, confirm bool) error