mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
added workers queue
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user