Context
When importing the GoFlow package, Go displays a missing go.sum entry error related to a package from IdleSpy.
This is resolved automatically by clicking the quick fix or manually running the suggested go get command — but ideally, it shouldn't be necessary.
Error Message
error while importing github.com/AlexsanderHamir/GoFlow/pkg/simulator:
missing go.sum entry for module providing package github.com/AlexsanderHamir/IdleSpy/tracker
(imported by github.com/AlexsanderHamir/GoFlow/pkg/simulator); to add:
go get github.com/AlexsanderHamir/GoFlow/pkg/simulator@v1.0.3
Notes
The IdleSpy module (at the specified version) does include the tracker package, and GoFlow correctly lists IdleSpy in both its go.mod and go.sum files.
Context
When importing the
GoFlowpackage, Go displays amissing go.sum entryerror related to a package fromIdleSpy.This is resolved automatically by clicking the quick fix or manually running the suggested
go getcommand — but ideally, it shouldn't be necessary.Error Message
Notes
The
IdleSpymodule (at the specified version) does include thetrackerpackage, andGoFlowcorrectly listsIdleSpyin both itsgo.modandgo.sumfiles.