Skip to content

Commit

Permalink
Merge pull request #97 from js-ojus/js
Browse files Browse the repository at this point in the history
Start using `dep` for dependency management
  • Loading branch information
js-ojus authored Dec 15, 2017
2 parents 18a7327 + 06d7fb8 commit 430764c
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ _test

/bin/
/pkg/
/vendor/

# Architecture specific extensions/prefixes
*.[568vqo]
Expand All @@ -41,6 +42,6 @@ _testmain.go
*.orig
core

# Take care of MacOS weirdness; for potential contributors using it
# Take care of macOS weirdness; for potential contributors using it
.DS_Store
._*
15 changes: 15 additions & 0 deletions Gopkg.lock

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

26 changes: 26 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# 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"


[[constraint]]
name = "github.com/go-sql-driver/mysql"
version = "1.3.0"

0 comments on commit 430764c

Please sign in to comment.