2021-05-08 00:59:42 +00:00
|
|
|
package unzip
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
)
|
|
|
|
|
|
2022-06-11 01:34:30 +00:00
|
|
|
type Unzipper struct {
|
2021-05-08 00:59:42 +00:00
|
|
|
client *http.Client
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-11 01:34:30 +00:00
|
|
|
func New(client *http.Client) *Unzipper {
|
|
|
|
|
return &Unzipper{
|
2021-05-08 00:59:42 +00:00
|
|
|
client: client,
|
|
|
|
|
}
|
|
|
|
|
}
|