2024-12-26 13:42:54 +00:00
|
|
|
package taskservice
|
|
|
|
|
2025-01-07 14:54:16 +00:00
|
|
|
import "code.aides.space/aides-infra/aides-repo-api/internal/models"
|
2024-12-26 13:42:54 +00:00
|
|
|
|
|
|
|
type WrapperRpmVersion struct {
|
|
|
|
file *models.RPMFile
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *WrapperRpmVersion) Epoch() int { return c.file.Epoch }
|
|
|
|
func (c *WrapperRpmVersion) Version() string { return c.file.Version }
|
|
|
|
func (c *WrapperRpmVersion) Release() string { return c.file.Release }
|