aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2021-08-21 18:28:30 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2021-08-21 18:28:30 -0400
commit47dca324a446bf088164a8e27404c2b8db89ccf5 (patch)
treecd6407bd09ee5acc027fc69a51d98156a6ab7e9a /go.mod
parentd25b274356451623382d18d2e0e190f407dbcf9f (diff)
downloadpaste-47dca324a446bf088164a8e27404c2b8db89ccf5.tar.gz
paste-47dca324a446bf088164a8e27404c2b8db89ccf5.tar.xz
Turn it into a simple rough draft of an API driven pastebin
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod8
1 files changed, 7 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index f3a6dab..3d92265 100644
--- a/go.mod
+++ b/go.mod
@@ -2,4 +2,10 @@ module riedstra.dev/mitch/bpaste
go 1.16
-require github.com/gorilla/mux v1.8.0 // indirect
+require (
+ github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
+ github.com/golang-jwt/jwt/v4 v4.0.0 // indirect
+ github.com/gorilla/mux v1.8.0 // indirect
+ golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
+ gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
+)