github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/steampipeconfig/parse/installed_mod.go (about)

     1  package parse
     2  
     3  import (
     4  	"github.com/Masterminds/semver/v3"
     5  	"github.com/turbot/steampipe/pkg/steampipeconfig/modconfig"
     6  )
     7  
     8  type InstalledMod struct {
     9  	Mod     *modconfig.Mod
    10  	Version *semver.Version
    11  }