package sample

import "net/http"

func NewClient() *http.Client {
	client := &http.Client{
		Transport: http.DefaultTransport,
	}
	return client
}