mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-11 04:38:54 -06:00
16 lines
170 B
Go
16 lines
170 B
Go
package unzip
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type Unzipper struct {
|
|
client *http.Client
|
|
}
|
|
|
|
func New(client *http.Client) *Unzipper {
|
|
return &Unzipper{
|
|
client: client,
|
|
}
|
|
}
|