feat: updated the way syncing pypi projects

This commit is contained in:
Marvin Zhang
2024-12-14 21:47:11 +08:00
parent 5293207795
commit 298420b0a6

View File

@@ -0,0 +1,9 @@
package models
type DependencyPypiProject struct {
any `collection:"dependency_pypi_projects"`
BaseModel[DependencyPypiProject] `bson:",inline"`
Name string `json:"name" bson:"name"`
Version string `json:"version" bson:"version"`
LastSerial int `json:"_last-serial" bson:"last_serial"`
}