Files
gluetun/internal/updater/unzip/unzip.go

18 lines
275 B
Go
Raw Normal View History

// Package unzip defines the Unzipper which fetches and extract a zip file
// containing multiple files.
package unzip
import (
"net/http"
)
type Unzipper struct {
client *http.Client
}
func New(client *http.Client) *Unzipper {
return &Unzipper{
client: client,
}
}