mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-21 19:20:05 -05:00
Switch to own clone of xml encoding library
This commit is contained in:
parent
8d8ee0016d
commit
f2cea7c6d4
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
type StatementRequest struct {
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
// Represents a top-level OFX message set (i.e. BANKMSGSRSV1)
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
type CCStatementRequest struct {
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
type InvStatementRequest struct {
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
type ProfileRequest struct {
|
||||
|
@ -3,7 +3,7 @@ package ofxgo
|
||||
import (
|
||||
"bytes"
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
type Request struct {
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"bufio"
|
||||
"bytes"
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"io"
|
||||
"strings"
|
||||
)
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
type SecurityId struct {
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
type SignonRequest struct {
|
||||
|
@ -3,7 +3,7 @@ package ofxgo
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
)
|
||||
|
||||
type AcctInfoRequest struct {
|
||||
|
2
types.go
2
types.go
@ -4,7 +4,7 @@ import (
|
||||
"crypto/rand"
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"math/big"
|
||||
"regexp"
|
||||
"strconv"
|
||||
|
@ -3,7 +3,7 @@ package ofxgo_test
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/aclindsa/ofxgo"
|
||||
"github.com/golang/go/src/encoding/xml"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"math/big"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
Loading…
Reference in New Issue
Block a user