mirror of
https://github.com/gomods/athens
synced 2026-02-03 14:20:31 +00:00
12 lines
237 B
Go
12 lines
237 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
|
|
Info []byte
|
|
Semver string
|
|
}
|