Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var GodepParser godepParser
GodepParser -
Functions ¶
This section is empty.
Types ¶
type Dependency ¶
type Dependency struct { ImportPath string `json:"ImportPath"` Comment string `json:"Comment,omitempty"` // Description of commit, if present. Rev string `json:"Rev"` // VCS-specific commit ID. }
The Dependency struct from godep.
https://raw.githubusercontent.com/tools/godep/master/dep.go
A Dependency is a specific revision of a package.
type Godeps ¶
type Godeps struct { ImportPath string `json:"ImportPath"` GoVersion string `json:"GoVersion"` GodepVersion string `json:"GodepVersion"` Packages []string `json:"Packages,omitempty"` // Arguments to save, if any. Deps []Dependency `json:"Deps"` }
The Godeps struct from godep.
https://raw.githubusercontent.com/tools/godep/master/godepfile.go
Godeps describes what a package needs to be rebuilt reproducibly. It's the same information stored in file Godeps.
Click to show internal directories.
Click to hide internal directories.