Documentation ¶
Overview ¶
Package godep provides basic importing of Godep dependencies.
This is not a complete implementation of Godep.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Dependency ¶
type Dependency struct { ImportPath string Comment string `json:",omitempty"` // Description of commit, if present. Rev string // VCS-specific commit ID. }
Dependency is a modified version of Godep's Dependency struct. It drops all of the unexported fields.
type Godeps ¶
type Godeps struct { ImportPath string GoVersion string Packages []string `json:",omitempty"` // Arguments to save, if any. Deps []Dependency // contains filtered or unexported fields }
The Godeps struct from Godep.
https://raw.githubusercontent.com/tools/godep/master/dep.go
We had to copy this because it's in the package main for Godep.
Click to show internal directories.
Click to hide internal directories.