mirror of
https://github.com/octoleo/restic.git
synced 2024-11-13 16:56:27 +00:00
b9f0f031b6
Closes #2129
14 lines
256 B
Go
14 lines
256 B
Go
// +build !go1.6
|
|
|
|
package swift
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
const IS_AT_LEAST_GO_16 = false
|
|
|
|
func SetExpectContinueTimeout(tr *http.Transport, t time.Duration) {}
|
|
func AddExpectAndTransferEncoding(req *http.Request, hasContentLength bool) {}
|