Files
2025-08-06 08:24:54 +02:00

13 lines
253 B
Go

package storage
import "io"
// Version represents a version of a module and contains .mod file, a .info file and zip file of a specific version.
type Version struct {
Mod []byte
Zip io.ReadCloser
ZipMD5 []byte
Info []byte
Semver string
}