added workers queue

This commit is contained in:
Sahilb315
2025-04-23 22:38:39 +05:30
parent 1085b73c90
commit 7167db9830
5 changed files with 1425 additions and 50 deletions
+12
View File
@@ -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)
}