add client and transport

This commit is contained in:
2025-10-19 13:05:29 +07:00
parent 729015c4ea
commit 6d1bf72d9d
9 changed files with 168 additions and 129 deletions
+5
View File
@@ -0,0 +1,5 @@
package http
type RoundTripper interface {
RoundTrip(*Request) (*Response, error)
}