1
0
mirror of https://github.com/aclindsa/ofxgo.git synced 2025-07-02 03:58:38 -04:00

cmd/ofx: Add option to use carriage returns for requests

This commit is contained in:
2020-11-17 09:20:27 -05:00
parent 10edd94920
commit 6807c93e0e
2 changed files with 7 additions and 4 deletions

View File

@ -14,10 +14,11 @@ func newRequest() (ofxgo.Client, *ofxgo.Request) {
}
var client = ofxgo.GetClient(serverURL,
&ofxgo.BasicClient{
AppID: appID,
AppVer: appVer,
SpecVersion: ver,
NoIndent: noIndentRequests,
AppID: appID,
AppVer: appVer,
SpecVersion: ver,
NoIndent: noIndentRequests,
CarriageReturn: carriageReturn,
})
var query ofxgo.Request