update library imports
This commit is contained in:
@ -16,7 +16,7 @@
|
||||
package composite
|
||||
|
||||
import (
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
)
|
||||
|
||||
type compositeLog struct {
|
||||
|
||||
@ -25,11 +25,11 @@ import (
|
||||
"time"
|
||||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/log/file"
|
||||
"github.com/quickfixgo/quickfix/log/mongo"
|
||||
"github.com/quickfixgo/quickfix/log/screen"
|
||||
"github.com/quickfixgo/quickfix/log/sql"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/log/file"
|
||||
"quantex.com/qfixpt/quickfix/log/mongo"
|
||||
"quantex.com/qfixpt/quickfix/log/screen"
|
||||
"quantex.com/qfixpt/quickfix/log/sql"
|
||||
"github.com/stretchr/testify/require"
|
||||
"github.com/stretchr/testify/suite"
|
||||
)
|
||||
|
||||
@ -21,8 +21,8 @@ import (
|
||||
"os"
|
||||
"path"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/config"
|
||||
)
|
||||
|
||||
type fileLog struct {
|
||||
|
||||
@ -23,7 +23,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
)
|
||||
|
||||
func TestFileLog_NewFileLogFactory(t *testing.T) {
|
||||
|
||||
@ -20,7 +20,7 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
)
|
||||
|
||||
func sessionIDFilenamePrefix(s quickfix.SessionID) string {
|
||||
|
||||
@ -21,7 +21,7 @@ import (
|
||||
"path"
|
||||
"testing"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
|
||||
@ -26,8 +26,8 @@ import (
|
||||
"go.mongodb.org/mongo-driver/mongo"
|
||||
"go.mongodb.org/mongo-driver/mongo/options"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/config"
|
||||
)
|
||||
|
||||
type mongoLogFactory struct {
|
||||
|
||||
@ -23,7 +23,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"github.com/stretchr/testify/require"
|
||||
"github.com/stretchr/testify/suite"
|
||||
)
|
||||
|
||||
@ -19,7 +19,7 @@ import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
)
|
||||
|
||||
type screenLog struct {
|
||||
|
||||
@ -22,8 +22,8 @@ import (
|
||||
"regexp"
|
||||
"time"
|
||||
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"github.com/quickfixgo/quickfix/config"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"quantex.com/qfixpt/quickfix/config"
|
||||
)
|
||||
|
||||
type sqlLogFactory struct {
|
||||
|
||||
@ -26,7 +26,7 @@ import (
|
||||
"time"
|
||||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"github.com/quickfixgo/quickfix"
|
||||
"quantex.com/qfixpt/quickfix"
|
||||
"github.com/stretchr/testify/require"
|
||||
"github.com/stretchr/testify/suite"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user