1
0
Fork 0
mirror of https://github.com/vbatts/sl-feeds.git synced 2024-11-21 23:35:39 +00:00

Merge pull request #14 from vbatts/go-mod

go: add a go modules file, for better dep tracking
This commit is contained in:
Vincent Batts 2021-02-16 14:32:11 -05:00 committed by GitHub
commit 75cc6dd1b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
go.mod Normal file
View file

@ -0,0 +1,10 @@
module github.com/vbatts/sl-feeds
go 1.13
require (
github.com/BurntSushi/toml v0.3.1
github.com/gorilla/feeds v1.1.1
github.com/kr/pretty v0.2.1 // indirect
github.com/urfave/cli v1.22.5
)