this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

make fmt

+5 -5
+4 -4
atproto/identity/apidir/apidir.go
··· 5 5 "encoding/json" 6 6 "fmt" 7 7 "io" 8 - "time" 9 8 "net/http" 9 + "time" 10 10 11 11 "github.com/bluesky-social/indigo/atproto/identity" 12 12 "github.com/bluesky-social/indigo/atproto/syntax" ··· 18 18 type APIDirectory struct { 19 19 Client *http.Client 20 20 // API service to make queries to. Includes schema, hostname, and port, but no path or trailing slash. Eg: "http://localhost:6600" 21 - Host string 21 + Host string 22 22 UserAgent string 23 23 } 24 24 ··· 54 54 MaxIdleConns: 100, 55 55 }, 56 56 }, 57 - Host: host, 58 - UserAgent: "indigo-apidir/"+versioninfo.Short(), 57 + Host: host, 58 + UserAgent: "indigo-apidir/" + versioninfo.Short(), 59 59 } 60 60 } 61 61
+1 -1
atproto/identity/apidir/live_test.go
··· 1 1 package apidir 2 2 3 3 import ( 4 - "testing" 5 4 "context" 5 + "testing" 6 6 7 7 "github.com/bluesky-social/indigo/atproto/syntax" 8 8