mirror of https://github.com/markbates/pkger.git
remove unnecessary conversion
This commit is contained in:
parent
2a3000b896
commit
6cf141c51a
|
@ -5,11 +5,11 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type Module struct {
|
type Module struct {
|
||||||
Path string `json:"path"`
|
Path string
|
||||||
Main bool `json:"main"`
|
Main bool
|
||||||
Dir string `json:"dir"`
|
Dir string
|
||||||
GoMod string `json:"go_mod"`
|
GoMod string
|
||||||
GoVersion string `json:"go_version"`
|
GoVersion string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i Module) String() string {
|
func (i Module) String() string {
|
||||||
|
|
Loading…
Reference in New Issue