From 754496450804407f53f79faa4f6911791d5caae0 Mon Sep 17 00:00:00 2001 From: Rasmus Lindroth Date: Sun, 1 May 2022 17:52:09 +0200 Subject: [PATCH] fix module --- example_test.go | 2 +- go.mod | 8 ++++++++ go.sum | 4 ++++ 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 go.mod create mode 100644 go.sum diff --git a/example_test.go b/example_test.go index 79aca84..32ea5fb 100644 --- a/example_test.go +++ b/example_test.go @@ -6,7 +6,7 @@ import ( "log" "time" - "github.com/RasmusLindroth/tut3/mastodon" + "github.com/RasmusLindroth/go-mastodon" ) func ExampleRegisterApp() { diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..c99dc1d --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module github.com/RasmusLindroth/go-mastodon + +go 1.18 + +require ( + github.com/gorilla/websocket v1.5.0 + github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..34589e8 --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= +github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 h1:nrZ3ySNYwJbSpD6ce9duiP+QkD3JuLCcWkdaehUS/3Y= +github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80/go.mod h1:iFyPdL66DjUD96XmzVL3ZntbzcflLnznH0fr99w5VqE=