this repo has no description
0
fork

Configure Feed

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

shuffle files

+4 -9
+4
atproto/client/api_client.go atproto/client/apiclient.go
··· 10 10 "github.com/bluesky-social/indigo/atproto/syntax" 11 11 ) 12 12 13 + type AuthMethod interface { 14 + DoWithAuth(c *http.Client, req *http.Request) (*http.Response, error) 15 + } 16 + 13 17 type APIClient struct { 14 18 // inner HTTP client 15 19 Client *http.Client
atproto/client/api_request.go atproto/client/apirequest.go
-9
atproto/client/auth_method.go
··· 1 - package client 2 - 3 - import ( 4 - "net/http" 5 - ) 6 - 7 - type AuthMethod interface { 8 - DoWithAuth(c *http.Client, req *http.Request) (*http.Response, error) 9 - }
atproto/client/error.go atproto/client/apierror.go