Switch to own clone of xml encoding library

This commit is contained in:
Aaron Lindsay 2017-03-22 20:59:40 -04:00
parent 8d8ee0016d
commit f2cea7c6d4
13 changed files with 13 additions and 13 deletions

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "errors"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
type StatementRequest struct { type StatementRequest struct {

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "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) // Represents a top-level OFX message set (i.e. BANKMSGSRSV1)

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "errors"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
type CCStatementRequest struct { type CCStatementRequest struct {

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "errors"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
type InvStatementRequest struct { type InvStatementRequest struct {

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "errors"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
type ProfileRequest struct { type ProfileRequest struct {

View File

@ -3,7 +3,7 @@ package ofxgo
import ( import (
"bytes" "bytes"
"errors" "errors"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
type Request struct { type Request struct {

View File

@ -4,7 +4,7 @@ import (
"bufio" "bufio"
"bytes" "bytes"
"errors" "errors"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
"io" "io"
"strings" "strings"
) )

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "errors"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
type SecurityId struct { type SecurityId struct {

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "errors"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
type SignonRequest struct { type SignonRequest struct {

View File

@ -3,7 +3,7 @@ package ofxgo
import ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
type AcctInfoRequest struct { type AcctInfoRequest struct {

View File

@ -4,7 +4,7 @@ import (
"crypto/rand" "crypto/rand"
"errors" "errors"
"fmt" "fmt"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
"math/big" "math/big"
"regexp" "regexp"
"strconv" "strconv"

View File

@ -3,7 +3,7 @@ package ofxgo_test
import ( import (
"fmt" "fmt"
"github.com/aclindsa/ofxgo" "github.com/aclindsa/ofxgo"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
"math/big" "math/big"
"reflect" "reflect"
"testing" "testing"

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"bytes" "bytes"
"github.com/golang/go/src/encoding/xml" "github.com/aclindsa/go/src/encoding/xml"
) )
// Returns the next available Token from the xml.Decoder that is not CharData // Returns the next available Token from the xml.Decoder that is not CharData