Separate go.mod

This commit is contained in:
Yasuhiro Matsumoto 2022-06-04 23:01:37 +09:00
parent b2204e0d6a
commit d272534ac7
No known key found for this signature in database
GPG key ID: 622DE34DC490584B
4 changed files with 73 additions and 61 deletions

14
cmd/mstdn/go.mod Normal file
View file

@ -0,0 +1,14 @@
module github.com/mattn/go-mastodon/cmd/mstdn
go 1.16
replace github.com/mattn/go-mastodon => ../..
require (
github.com/PuerkitoBio/goquery v1.8.0
github.com/fatih/color v1.13.0
github.com/mattn/go-mastodon v0.0.4
github.com/mattn/go-tty v0.0.4
github.com/urfave/cli v1.22.9
golang.org/x/net v0.0.0-20220531201128-c960675eff93
)