Begin work on YNAB client

After reading these docs
https://api.youneedabudget.com/v1#/Transactions/createTransaction I successfully
made a request to post a transaction to my YNAB account. Hastily created a
client.go that doesn't contain much at the moment.
This commit is contained in:
William Carroll 2020-02-10 23:22:36 +00:00
parent 2e719d1174
commit e223adfec5
4 changed files with 71 additions and 2 deletions

View file

@ -8,4 +8,6 @@ source_up
export monzo_client_id="$(pass show finance/monzo/client-id)"
export monzo_client_secret="$(pass show finance/monzo/client-secret)"
export ynab_personal_access_token="$(pass show finance/youneedabudget.com/personal-access-token)"
export ynab_account_id="$(pass show finance/youneedabudget.com/personal-access-token)"
export ynab_budget_id="$(pass show finance/youneedabudget.com/budget-id)"
eval "$(lorri direnv)"