mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
12 lines
202 B
Go
12 lines
202 B
Go
package parse
|
|
|
|
import (
|
|
"github.com/Masterminds/semver/v3"
|
|
"github.com/turbot/steampipe/pkg/steampipeconfig/modconfig"
|
|
)
|
|
|
|
type InstalledMod struct {
|
|
Mod *modconfig.Mod
|
|
Version *semver.Version
|
|
}
|