Magick Wizard ⌘

Results 19 comments of Magick Wizard ⌘

@gucio321 I can't import it, missing in indexes, or I need to pull it with go get?

Still asks to run go mod tidy: ``` go: updates to go.mod needed; to update it: go mod tidy Compilation finished with exit code 1 ```

Command: go run -ldflags "-s -w -H=windowsgui -extldflags=-static" .\main.go go.mod: ``` module ReMigo go 1.23.3 require ( github.com/gocolly/colly/v2 v2.1.0 golang.org/x/sys v0.27.0 gopkg.in/yaml.v3 v3.0.1 ) require ( github.com/AllenDang/cimgui-go v1.2.0 // indirect...

Resolved with: 1. remove all giu related code 2. go mod tidy 3. go get github.com/AllenDang/giu/ 4. include all giu code back

Sure bud: ``` module ReMigo go 1.23.3 require ( github.com/gocolly/colly/v2 v2.1.0 golang.org/x/sys v0.27.0 gopkg.in/yaml.v3 v3.0.1 ) require ( github.com/AllenDang/cimgui-go v1.2.0 // indirect github.com/AllenDang/giu v0.11.0 // indirect github.com/AllenDang/go-findfont v0.0.0-20200702051237-9f180485aeb8 // indirect...