mirror of
https://github.com/gomods/athens
synced 2026-02-03 08:40:31 +00:00
13 lines
253 B
Go
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
|
|
}
|