Skip to content
This repository was archived by the owner on May 29, 2018. It is now read-only.

Latest commit

 

History

History
31 lines (21 loc) · 1.26 KB

README.md

File metadata and controls

31 lines (21 loc) · 1.26 KB

go-deps

xrefs funcs top func library users status

Package deps analyzes and recursively installs Go package dependencies. It is library functionality similar to go get.

Docs: go-deps on Sourcegraph

Installation

go get github.com/sourcegraph/go-deps

Example Usage

import (
    "github.com/sourcegraph/go-deps"
)

pkg, _ := deps.Read(test.importPath)
for _, p := range pkg.DepsNotFound {
    p.Download()
}

Authors