remove unnecessary conversion

This commit is contained in:
aperezg 2019-11-09 20:26:33 +01:00
parent 2a3000b896
commit 6cf141c51a
1 changed files with 5 additions and 5 deletions

View File

@ -5,11 +5,11 @@ import (
)
type Module struct {
Path string `json:"path"`
Main bool `json:"main"`
Dir string `json:"dir"`
GoMod string `json:"go_mod"`
GoVersion string `json:"go_version"`
Path string
Main bool
Dir string
GoMod string
GoVersion string
}
func (i Module) String() string {