arcast/pkg/client/client.go

16 lines
150 B
Go
Raw Normal View History

2023-12-13 20:07:22 +01:00
package client
import (
"net/http"
)
type Client struct {
http *http.Client
}
func New() *Client {
return &Client{
http: &http.Client{},
}
}