terraform-provider-eventline/external/evcli/http.go

15 lines
148 B
Go
Raw Normal View History

package evcli
import (
"net/http"
"time"
)
func NewHTTPClient() *http.Client {
c := &http.Client{
Timeout: 30 * time.Second,
}
return c
}