malformed module path … missing dot in first path element
问题 I have a project with 2 different executables, each having it's own dependencies plus a shared dependency on the root, something like this: Root |->server | |-> main.go | |-> someOtherFiles.go | |-> go.mod | |-> go.sum |->validator | |-> main.go | |-> someOtherFiles.go | |-> go.mod | |-> go.sum |->utils | |-> someOtherFiles.go |->config | |-> someOtherFiles.go |-> go.mod |-> go.sum My root's go.mod is like this module prex-kyc go 1.13 require ({requiredDependencies}) And my validator's go.mod