comments and formatting
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is passing Details

This commit is contained in:
Steven Polley 2024-03-30 19:42:58 -06:00
parent 54417bf436
commit 7ce58c03d7
4 changed files with 2 additions and 2 deletions

View File

@ -5,6 +5,7 @@ import (
"net/url"
)
// A chart response is what we get back from Yahoo Finance
type chart struct {
Chart struct {
Result []struct {

View File

@ -160,6 +160,5 @@
<h3 style="color:#fff";>Created by Steven Polley</h3>
</div>
</div>
</body>
</html>

View File

@ -29,7 +29,6 @@ func homePageHandler(w http.ResponseWriter, r *http.Request) {
log.Printf("error executing home.html template: %v", err)
}
//http.Redirect(w, r, fmt.Sprintf("https://app.ynab.com/%s", ynabClient.BudgetID), http.StatusSeeOther)
}
// Returns status 200 if a refresh is not running, otherwise waits for refresh to finish

View File

@ -1,3 +1,4 @@
// Package ynab provides a very simple API client for getting account data and setting account balances.
package ynab
import (