golint fixes
This commit is contained in:
parent
c3ea983498
commit
bd3bf33613
@ -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")+"/")
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user