mirror of
https://github.com/gomods/athens
synced 2026-02-03 13:20:30 +00:00
16 lines
375 B
Go
16 lines
375 B
Go
package storage
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// RevInfo is json-encodable into the response body for
|
|
// GET baseURL/module/@v/version.info
|
|
//
|
|
// This struct is taken directly from https://research.swtch.com/vgo-module
|
|
// (see "Download Protocol" header)
|
|
type RevInfo struct {
|
|
Version string `json:"Version"` // version string
|
|
Time time.Time `json:"Time"` // commit time
|
|
}
|