go.mod
author Roberto Santalla <roobre@users.noreply.github.com>
Wed, 24 Jul 2019 10:31:51 +0200
changeset 251 1aab69d32d74
parent 246 3dcfc59d90b9
child 253 0e8c8026cf40
permissions -rw-r--r--
Fixed typo in godoc Co-Authored-By: Mikael Berthe <mikael@lilotux.net> committer: GitHub <noreply@github.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
246
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
module github.com/McKael/madon/v2
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
require (
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
	github.com/davecgh/go-spew v1.1.1
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
	github.com/gorilla/websocket v1.4.0
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
	github.com/pkg/errors v0.8.0
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
	github.com/pmezard/go-difflib v1.0.0 // indirect
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
	github.com/sendgrid/rest v2.4.1+incompatible
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
	github.com/stretchr/testify v1.2.2
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
	golang.org/x/net v0.0.0-20180926154720-4dfa2610cdf3
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
	golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    12
	golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f // indirect
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    13
	google.golang.org/appengine v1.2.0 // indirect
3dcfc59d90b9 Add Go modules support
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    14
)