Files
pmg/pkg/models/models.go
T

13 lines
192 B
Go
Raw Normal View History

2025-04-23 22:38:39 +05:30
package models
import "fmt"
type PackageAnalysisItem struct {
Name string
Version string
}
func (p PackageAnalysisItem) Id() string {
return fmt.Sprintf("%s@%s", p.Name, p.Version)
}