mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
13 lines
192 B
Go
13 lines
192 B
Go
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)
|
|
}
|