mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-22 03:30:04 -05:00
Merge pull request #2 from aclindsa/smaller_xml_parser
Switch to copy of encoding/xml with only that subdirectory
This commit is contained in:
commit
fa05f64497
@ -4,7 +4,6 @@ os:
|
||||
- linux
|
||||
|
||||
go:
|
||||
- 1.8.x
|
||||
- 1.9.x
|
||||
- master
|
||||
|
||||
|
2
bank.go
2
bank.go
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
)
|
||||
|
||||
// StatementRequest represents a request for a bank statement. It is used to
|
||||
|
@ -4,7 +4,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
)
|
||||
|
||||
// Message represents an OFX message in a message set. it is used to ease
|
||||
|
@ -9,7 +9,7 @@ package ofxgo
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
@ -7,7 +7,7 @@ package ofxgo_test
|
||||
*/
|
||||
|
||||
import (
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"github.com/aclindsa/ofxgo"
|
||||
"strings"
|
||||
"testing"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package ofxgo
|
||||
|
||||
import (
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
)
|
||||
|
||||
// CCStatementRequest represents a request for a credit card statement. It is
|
||||
|
@ -65,7 +65,7 @@ header = """package ofxgo
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"strings"
|
||||
)
|
||||
"""
|
||||
@ -173,7 +173,7 @@ test_header = """package ofxgo_test
|
||||
*/
|
||||
|
||||
import (
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"github.com/aclindsa/ofxgo"
|
||||
"strings"
|
||||
"testing"
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
)
|
||||
|
||||
// InvStatementRequest allows a customer to request transactions, positions,
|
||||
|
@ -1,7 +1,7 @@
|
||||
package ofxgo_test
|
||||
|
||||
import (
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"github.com/aclindsa/ofxgo"
|
||||
"reflect"
|
||||
"strings"
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
)
|
||||
|
||||
// ProfileRequest represents a request for a server to provide a profile of its
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"bytes"
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"bufio"
|
||||
"bytes"
|
||||
"errors"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"io"
|
||||
"reflect"
|
||||
"strings"
|
||||
|
@ -2,7 +2,7 @@ package ofxgo_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"github.com/aclindsa/ofxgo"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
)
|
||||
|
||||
// SecurityID identifies a security by its CUSIP (for US-based FI's, others may
|
||||
|
@ -3,7 +3,7 @@ package ofxgo
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
)
|
||||
|
||||
// SignonRequest identifies and authenticates a user to their FI and is
|
||||
|
@ -2,7 +2,7 @@ package ofxgo
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
)
|
||||
|
||||
// AcctInfoRequest represents a request for the server to provide information
|
||||
|
2
types.go
2
types.go
@ -4,7 +4,7 @@ import (
|
||||
"crypto/rand"
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"golang.org/x/text/currency"
|
||||
"math/big"
|
||||
"regexp"
|
||||
|
@ -2,7 +2,7 @@ package ofxgo_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/aclindsa/go/src/encoding/xml"
|
||||
"github.com/aclindsa/xml"
|
||||
"github.com/aclindsa/ofxgo"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
Loading…
Reference in New Issue
Block a user