Files
Michal Pristas d088208941 Updated to go1.11rc1 (#482)
* updated to rc1

* latest test
2018-08-15 12:26:43 -04:00

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
}