fix module

This commit is contained in:
Rasmus Lindroth 2022-05-01 17:52:09 +02:00
parent b1b367ca33
commit 7544964508
3 changed files with 13 additions and 1 deletions

View file

@ -6,7 +6,7 @@ import (
"log"
"time"
"github.com/RasmusLindroth/tut3/mastodon"
"github.com/RasmusLindroth/go-mastodon"
)
func ExampleRegisterApp() {

8
go.mod Normal file
View file

@ -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
)

4
go.sum Normal file
View file

@ -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=