diff options
author | Andinus <andinus@nand.sh> | 2020-03-24 17:41:57 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-03-24 17:41:57 +0530 |
commit | 813b37d0cf7e6e371418feac56d40f48176105ba (patch) | |
tree | 2e4efd2224ff84700cbf354ea0ff75775d79a8a0 /pkg/background/download.go | |
parent | 532c060fd97c31c28f20f6f823472247edc0c30f (diff) | |
download | cetus-813b37d0cf7e6e371418feac56d40f48176105ba.tar.gz |
Reinitialize project and change module url
Diffstat (limited to 'pkg/background/download.go')
-rw-r--r-- | pkg/background/download.go | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/pkg/background/download.go b/pkg/background/download.go deleted file mode 100644 index 78ff135..0000000 --- a/pkg/background/download.go +++ /dev/null @@ -1,34 +0,0 @@ -package background - -import ( - "fmt" - "io" - "net/http" - "os" -) - -// Download takes path and url as input and downloads the data to a -// file, returning an error if there is one -func Download(file string, url string) error { - o, err := os.Create(file) - if err != nil { - return err - } - defer o.Close() - - res, err := http.Get(url) - if err != nil { - return err - } - defer res.Body.Close() - - if res.StatusCode != http.StatusOK { - return fmt.Errorf("Unexpected Response: %s", res.Status) - } - - _, err = io.Copy(o, res.Body) - if err != nil { - return err - } - return nil -} |