diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-09T13·47+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-10T10·06+0000 |
commit | 64654d1d6d1f36a20e00ee6cdc3866ff009c3a0a (patch) | |
tree | 3a764c88197e704a86ef527467b49a933c9f242d /monzo_ynab/main.go | |
parent | ec4c8472ca8eaed9a40d5decf5f909bdda96ec62 (diff) |
Create gopkgs directory for golang libs
- Created a gopkgs directory and registered it with default.nix's readTree - Moved monzo_ynab/utils -> gopkgs - Consumed utils.go in main.go - Renamed monzo_ynab -> job
Diffstat (limited to 'monzo_ynab/main.go')
-rw-r--r-- | monzo_ynab/main.go | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/monzo_ynab/main.go b/monzo_ynab/main.go index 1709ffda786e..10dc9f3effe5 100644 --- a/monzo_ynab/main.go +++ b/monzo_ynab/main.go @@ -13,7 +13,6 @@ import ( "bytes" "encoding/json" "fmt" - "io/ioutil" "log" "net/http" "net/http/httputil" @@ -21,6 +20,7 @@ import ( "strings" "os" "os/exec" + "utils" ) //////////////////////////////////////////////////////////////////////////////// @@ -78,9 +78,7 @@ func getTokens(code string) *Tokens { "redirect_uri": {redirectURI}, "code": {code}, }) - if err != nil { - log.Fatal(err) - } + utils.FailOn(err) defer res.Body.Close() payload := &accessTokenResponse{} json.NewDecoder(res.Body).Decode(payload) @@ -136,9 +134,7 @@ func authorize() { req, _ := http.NewRequest("POST", "http://localhost:4242/set-tokens", bytes.NewBuffer(payload)) req.Header.Set("Content-Type", "application/json") _, err := client.Do(req) - if err != nil { - log.Fatal(err) - } + utils.FailOn(err) } // Retrieves the access token from the tokens server. |