------------ directory:
-- main.go
-- go.mod
main.go:
package main
import "fmt"
func main() {
fmt.Println("hello")
}
start realize:
error shows:
[10:54:52][TEST] : Watching 1 file/s 0 folder/s
[10:54:52][TEST] : Install started
[10:54:52][TEST] : Install
exec: not started
But when I remove go.mod, everything works fine.
------------ directory:
-- main.go
-- go.mod
main.go:
start realize:
error shows:
But when I remove go.mod, everything works fine.