зеркало из https://github.com/github/s3gof3r.git
Remove errors dependency.
This commit is contained in:
Родитель
eb090e7bfa
Коммит
8708bd5547
4
auth.go
4
auth.go
|
@ -2,7 +2,7 @@ package s3gof3r
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
|
@ -83,7 +83,7 @@ func EnvKeys() (keys Keys, err error) {
|
||||||
SecretKey: os.Getenv("AWS_SECRET_ACCESS_KEY"),
|
SecretKey: os.Getenv("AWS_SECRET_ACCESS_KEY"),
|
||||||
}
|
}
|
||||||
if keys.AccessKey == "" || keys.SecretKey == "" {
|
if keys.AccessKey == "" || keys.SecretKey == "" {
|
||||||
err = errors.New("Keys not set in environment: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY")
|
err = fmt.Errorf("Keys not set in environment: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY")
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче