initial attempt to integrate surf http client

This commit is contained in:
2026-01-24 14:59:48 -06:00
parent 2f1019d170
commit 538d52d064
45 changed files with 196 additions and 109 deletions
+3 -1
View File
@@ -33,9 +33,10 @@ to https://www.reddit.com/api/v1/access_token with the following form values:
package reddit
/*
import (
"context"
"net/http"
"github.com/enetx/http"
"golang.org/x/oauth2"
)
@@ -75,3 +76,4 @@ func oauthTransport(client *Client) http.RoundTripper {
Base: client.client.Transport,
}
}
*/