Use Go modules

This commit is contained in:
Dawid Dziurla
2019-10-21 12:51:56 +02:00
parent e5114a3e76
commit 217566efc5
2 changed files with 76 additions and 0 deletions

14
go.mod Normal file
View File

@@ -0,0 +1,14 @@
module github.com/cheat/cheat
go 1.13
require (
github.com/alecthomas/chroma v0.6.7
github.com/davecgh/go-spew v1.1.1
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
github.com/mitchellh/go-homedir v1.1.0
github.com/tj/front v0.0.0-20170212063142-739be213b0a1
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0 // indirect
gopkg.in/yaml.v2 v2.2.4
)