When trying to implement this package and run go build, even in it's most basic form with simply err := ui.Init(), I get the error stated in the title.
Here's a stack trace:
go build
# github.com/gizak/termui
../../../go/pkg/mod/github.com/gizak/termui@v2.3.0+incompatible/render.go:107:30: too many arguments in call to stack.ParseDump
have (*bytes.Reader, *os.File, bool)
want (io.Reader, io.Writer)
../../../go/pkg/mod/github.com/gizak/termui@v2.3.0+incompatible/render.go:112:15: undefined: stack.Aggregate
../../../go/pkg/mod/github.com/gizak/termui@v2.3.0+incompatible/render.go:112:33: gs.Goroutines undefined (type []stack.Goroutine has no field or method Goroutines)
make: *** [build] Error 2
When trying to implement this package and run
go build
, even in it's most basic form with simplyerr := ui.Init()
, I get the error stated in the title.Here's a stack trace: