initial code

This commit is contained in:
Quentin McGaw
2024-10-23 09:05:32 +00:00
parent a17591dcdb
commit 1b12dcb5b4
29 changed files with 927 additions and 22 deletions
@@ -0,0 +1,9 @@
package updater
import "net/http"
type roundTripFunc func(r *http.Request) (*http.Response, error)
func (f roundTripFunc) RoundTrip(r *http.Request) (*http.Response, error) {
return f(r)
}