1
0
mirror of https://github.com/aclindsa/ofxgo.git synced 2025-07-01 19:58:37 -04:00

cmd/ofx: golint

This commit is contained in:
2017-04-16 20:50:06 -04:00
parent 33c7ad463c
commit 94f49640b4
11 changed files with 23 additions and 25 deletions

View File

@ -8,7 +8,7 @@ import (
"time"
)
var getAccountsCommand = Command{
var getAccountsCommand = command{
Name: "get-accounts",
Description: "List accounts at your financial institution",
Flags: flag.NewFlagSet("get-accounts", flag.ExitOnError),
@ -21,7 +21,7 @@ func init() {
}
func getAccounts() {
client, query := NewRequest()
client, query := newRequest()
uid, err := ofxgo.RandomUID()
if err != nil {