Skip to content

Commit

Permalink
First commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
s1061123 committed Aug 13, 2018
0 parents commit 2aaf035
Show file tree
Hide file tree
Showing 692 changed files with 239,766 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kokotap
dist
*~
9 changes: 9 additions & 0 deletions .goxc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"ConfigVersion": "0.9",
"PackageVersion": "unknown",
"PrereleaseInfo": "",
"BuildSettings": {
"LdFlags": "-extldflags '-static'",
"Tags": "netgo"
}
}
195 changes: 195 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true

ignored = ["bytes"]

[[constraint]]
name = "github.com/redhat-nfvpe/koko"
version = "0.7"

[[override]]
name = "github.com/docker/docker"
branch = "master"

[[override]]
name = "golang.org/x/sys"
branch = "master"

[[constraint]]
name = "gopkg.in/alecthomas/kingpin.v2"
version = "2.2.6"

[prune]
go-tests = true
unused-packages = true
Loading

0 comments on commit 2aaf035

Please sign in to comment.