Skip to content

Commit 8861801

Browse files
Initial commit
0 parents  commit 8861801

25 files changed

+2002
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/dargs
2+
*.swp
3+
/vendor

Gopkg.lock

+273
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
2+
# Gopkg.toml example
3+
#
4+
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
5+
# for detailed Gopkg.toml documentation.
6+
#
7+
# required = ["github.com/user/thing/cmd/thing"]
8+
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
9+
#
10+
# [[constraint]]
11+
# name = "github.com/user/project"
12+
# version = "1.0.0"
13+
#
14+
# [[constraint]]
15+
# name = "github.com/user/project2"
16+
# branch = "dev"
17+
# source = "github.com/myfork/project2"
18+
#
19+
# [[override]]
20+
# name = "github.com/x/y"
21+
# version = "2.4.0"
22+
23+
24+
[[constraint]]
25+
branch = "master"
26+
name = "github.com/mitchellh/go-homedir"
27+
28+
[[constraint]]
29+
name = "github.com/patrickmn/go-cache"
30+
version = "2.0.0"
31+
32+
[[constraint]]
33+
name = "github.com/sirupsen/logrus"
34+
version = "1.0.3"
35+
36+
[[constraint]]
37+
branch = "master"
38+
name = "github.com/spf13/cobra"
39+
40+
[[constraint]]
41+
name = "github.com/x-cray/logrus-prefixed-formatter"
42+
version = "0.5.2"
43+
44+
[[constraint]]
45+
branch = "v2"
46+
name = "gopkg.in/yaml.v2"

0 commit comments

Comments
 (0)