mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-10 16:10:05 -05:00
25 lines
536 B
Go
25 lines
536 B
Go
package main
|
|
|
|
import (
|
|
"github.com/aclindsa/ofxgo"
|
|
)
|
|
|
|
func NewRequest() (*ofxgo.Client, *ofxgo.Request) {
|
|
var client = ofxgo.Client{
|
|
AppId: appId,
|
|
AppVer: appVer,
|
|
SpecVersion: ofxVersion,
|
|
NoIndent: noIndentRequests,
|
|
}
|
|
|
|
var query ofxgo.Request
|
|
query.URL = serverURL
|
|
query.Signon.ClientUID = ofxgo.UID(clientUID)
|
|
query.Signon.UserId = ofxgo.String(username)
|
|
query.Signon.UserPass = ofxgo.String(password)
|
|
query.Signon.Org = ofxgo.String(org)
|
|
query.Signon.Fid = ofxgo.String(fid)
|
|
|
|
return &client, &query
|
|
}
|