[ref] expose packages on github
This commit is contained in:
parent
9c53bdf358
commit
cc113ecc49
|
@ -5,7 +5,7 @@ import (
|
|||
"strings"
|
||||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"l12.xyz/dal/facade"
|
||||
"github.com/nesterow/dal/pkg/facade"
|
||||
)
|
||||
|
||||
//export InitSQLite
|
||||
|
|
|
@ -2,35 +2,35 @@ module binding
|
|||
|
||||
go 1.22.6
|
||||
|
||||
replace l12.xyz/dal/filters v0.0.0 => ../pkg/filters
|
||||
replace github.com/nesterow/dal/pkg/filters v0.0.0 => ../pkg/filters
|
||||
|
||||
replace l12.xyz/dal/builder v0.0.0 => ../pkg/builder
|
||||
replace github.com/nesterow/dal/pkg/builder v0.0.0 => ../pkg/builder
|
||||
|
||||
replace l12.xyz/dal/handler v0.0.0 => ../pkg/handler
|
||||
replace github.com/nesterow/dal/pkg/handler v0.0.0 => ../pkg/handler
|
||||
|
||||
require l12.xyz/dal/adapter v0.0.0 // indirect
|
||||
require github.com/nesterow/dal/pkg/adapter v0.0.0 // indirect
|
||||
|
||||
replace l12.xyz/dal/adapter v0.0.0 => ../pkg/adapter
|
||||
replace github.com/nesterow/dal/pkg/adapter v0.0.0 => ../pkg/adapter
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../pkg/utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../pkg/utils
|
||||
|
||||
replace l12.xyz/dal/proto v0.0.0 => ../pkg/proto
|
||||
replace github.com/nesterow/dal/pkg/proto v0.0.0 => ../pkg/proto
|
||||
|
||||
require (
|
||||
github.com/mattn/go-sqlite3 v1.14.22
|
||||
l12.xyz/dal/facade v0.0.0
|
||||
github.com/nesterow/dal/pkg/facade v0.0.0
|
||||
)
|
||||
|
||||
require l12.xyz/dal/handler v0.0.0 // indirect
|
||||
require github.com/nesterow/dal/pkg/handler v0.0.0 // indirect
|
||||
|
||||
replace l12.xyz/dal/facade v0.0.0 => ../pkg/facade
|
||||
replace github.com/nesterow/dal/pkg/facade v0.0.0 => ../pkg/facade
|
||||
|
||||
require (
|
||||
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/tinylib/msgp v1.2.0 // indirect
|
||||
l12.xyz/dal/builder v0.0.0 // indirect
|
||||
l12.xyz/dal/filters v0.0.0 // indirect
|
||||
l12.xyz/dal/proto v0.0.0 // indirect
|
||||
l12.xyz/dal/utils v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/builder v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/filters v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/proto v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/utils v0.0.0 // indirect
|
||||
)
|
||||
|
|
|
@ -2,29 +2,29 @@ module srv
|
|||
|
||||
go 1.22.6
|
||||
|
||||
replace l12.xyz/dal/filters v0.0.0 => ../../../pkg/filters
|
||||
replace github.com/nesterow/dal/pkg/filters v0.0.0 => ../../../pkg/filters
|
||||
|
||||
replace l12.xyz/dal/builder v0.0.0 => ../../../pkg/builder
|
||||
replace github.com/nesterow/dal/pkg/builder v0.0.0 => ../../../pkg/builder
|
||||
|
||||
require l12.xyz/dal/adapter v0.0.0
|
||||
require github.com/nesterow/dal/pkg/adapter v0.0.0
|
||||
|
||||
replace l12.xyz/dal/adapter v0.0.0 => ../../../pkg/adapter
|
||||
replace github.com/nesterow/dal/pkg/adapter v0.0.0 => ../../../pkg/adapter
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../../../pkg/utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../../../pkg/utils
|
||||
|
||||
replace l12.xyz/dal/proto v0.0.0 => ../../../pkg/proto
|
||||
replace github.com/nesterow/dal/pkg/proto v0.0.0 => ../../../pkg/proto
|
||||
|
||||
require l12.xyz/dal/handler v0.0.0
|
||||
require github.com/nesterow/dal/pkg/handler v0.0.0
|
||||
|
||||
replace l12.xyz/dal/handler v0.0.0 => ../../../pkg/handler
|
||||
replace github.com/nesterow/dal/pkg/handler v0.0.0 => ../../../pkg/handler
|
||||
|
||||
require (
|
||||
github.com/mattn/go-sqlite3 v1.14.22
|
||||
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/tinylib/msgp v1.2.0 // indirect
|
||||
l12.xyz/dal/builder v0.0.0 // indirect
|
||||
l12.xyz/dal/filters v0.0.0 // indirect
|
||||
l12.xyz/dal/proto v0.0.0 // indirect
|
||||
l12.xyz/dal/utils v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/builder v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/filters v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/proto v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/utils v0.0.0 // indirect
|
||||
)
|
||||
|
|
|
@ -8,8 +8,8 @@ import (
|
|||
"syscall"
|
||||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"l12.xyz/dal/adapter"
|
||||
"l12.xyz/dal/handler"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
"github.com/nesterow/dal/pkg/handler"
|
||||
)
|
||||
|
||||
func mock(adapter adapter.DBAdapter) {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"testing"
|
||||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"l12.xyz/dal/adapter"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
)
|
||||
|
||||
func TestAdapterBasic(t *testing.T) {
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
"testing"
|
||||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"l12.xyz/dal/adapter"
|
||||
"l12.xyz/dal/builder"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
"github.com/nesterow/dal/pkg/builder"
|
||||
)
|
||||
|
||||
func TestBuilderBasic(t *testing.T) {
|
||||
|
|
|
@ -1,31 +1,31 @@
|
|||
module l12.xyz/dal/tests
|
||||
module github.com/nesterow/dal/pkg/tests
|
||||
|
||||
go 1.22.6
|
||||
|
||||
require l12.xyz/dal/builder v0.0.0
|
||||
require github.com/nesterow/dal/pkg/builder v0.0.0
|
||||
|
||||
replace l12.xyz/dal/builder v0.0.0 => ../builder
|
||||
replace github.com/nesterow/dal/pkg/builder v0.0.0 => ../builder
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../utils
|
||||
|
||||
require l12.xyz/dal/adapter v0.0.0
|
||||
require github.com/nesterow/dal/pkg/adapter v0.0.0
|
||||
|
||||
require l12.xyz/dal/proto v0.0.0
|
||||
require github.com/nesterow/dal/pkg/proto v0.0.0
|
||||
|
||||
require (
|
||||
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect
|
||||
github.com/tinylib/msgp v1.2.0 // indirect
|
||||
)
|
||||
|
||||
replace l12.xyz/dal/adapter v0.0.0 => ../adapter
|
||||
replace github.com/nesterow/dal/pkg/adapter v0.0.0 => ../adapter
|
||||
|
||||
replace l12.xyz/dal/proto v0.0.0 => ../proto
|
||||
replace github.com/nesterow/dal/pkg/proto v0.0.0 => ../proto
|
||||
|
||||
replace l12.xyz/dal/filters v0.0.0 => ../filters
|
||||
replace github.com/nesterow/dal/pkg/filters v0.0.0 => ../filters
|
||||
|
||||
require (
|
||||
github.com/mattn/go-sqlite3 v1.14.22
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
l12.xyz/dal/filters v0.0.0 // indirect
|
||||
l12.xyz/dal/utils v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/filters v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/utils v0.0.0 // indirect
|
||||
)
|
||||
|
|
|
@ -6,8 +6,8 @@ import (
|
|||
"testing"
|
||||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
"l12.xyz/dal/adapter"
|
||||
"l12.xyz/dal/proto"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
"github.com/nesterow/dal/pkg/proto"
|
||||
)
|
||||
|
||||
func TestProtoMessagePack(t *testing.T) {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"strconv"
|
||||
"strings"
|
||||
|
||||
utils "l12.xyz/dal/utils"
|
||||
utils "github.com/nesterow/dal/pkg/utils"
|
||||
)
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
module l12.xyz/dal/adapter
|
||||
module github.com/nesterow/dal/pkg/adapter
|
||||
|
||||
go 1.22.6
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../utils
|
||||
|
||||
replace l12.xyz/dal/filters v0.0.0 => ../filters
|
||||
replace github.com/nesterow/dal/pkg/filters v0.0.0 => ../filters
|
||||
|
||||
require l12.xyz/dal/utils v0.0.0
|
||||
require github.com/nesterow/dal/pkg/utils v0.0.0
|
||||
|
||||
require github.com/pkg/errors v0.9.1 // indirect
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"strings"
|
||||
|
||||
utils "l12.xyz/dal/utils"
|
||||
utils "github.com/nesterow/dal/pkg/utils"
|
||||
)
|
||||
|
||||
func convertConflict(ctx Dialect, fields ...string) string {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"strings"
|
||||
|
||||
filters "l12.xyz/dal/filters"
|
||||
filters "github.com/nesterow/dal/pkg/filters"
|
||||
)
|
||||
|
||||
type Values = []interface{}
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"strings"
|
||||
|
||||
"l12.xyz/dal/utils"
|
||||
"github.com/nesterow/dal/pkg/utils"
|
||||
)
|
||||
|
||||
func convertGroup(ctx Dialect, keys []string) string {
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
module l12.xyz/dal/builder
|
||||
module github.com/nesterow/dal/pkg/builder
|
||||
|
||||
go 1.22.6
|
||||
|
||||
require l12.xyz/dal/utils v0.0.0
|
||||
require github.com/nesterow/dal/pkg/utils v0.0.0
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../utils
|
||||
|
||||
require l12.xyz/dal/filters v0.0.0
|
||||
require github.com/nesterow/dal/pkg/filters v0.0.0
|
||||
|
||||
require github.com/pkg/errors v0.9.1 // indirect
|
||||
|
||||
replace l12.xyz/dal/filters v0.0.0 => ../filters
|
||||
replace github.com/nesterow/dal/pkg/filters v0.0.0 => ../filters
|
||||
|
||||
require l12.xyz/dal/adapter v0.0.0
|
||||
require github.com/nesterow/dal/pkg/adapter v0.0.0
|
||||
|
||||
replace l12.xyz/dal/adapter v0.0.0 => ../adapter
|
||||
replace github.com/nesterow/dal/pkg/adapter v0.0.0 => ../adapter
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package builder
|
||||
|
||||
import (
|
||||
adapter "l12.xyz/dal/adapter"
|
||||
filters "l12.xyz/dal/filters"
|
||||
adapter "github.com/nesterow/dal/pkg/adapter"
|
||||
filters "github.com/nesterow/dal/pkg/filters"
|
||||
)
|
||||
|
||||
type RawSql = map[string]interface{}
|
||||
|
|
|
@ -4,8 +4,8 @@ import (
|
|||
"log"
|
||||
"reflect"
|
||||
|
||||
"l12.xyz/dal/adapter"
|
||||
"l12.xyz/dal/proto"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
"github.com/nesterow/dal/pkg/proto"
|
||||
)
|
||||
|
||||
var db adapter.DBAdapter
|
||||
|
|
|
@ -6,8 +6,8 @@ import (
|
|||
"os"
|
||||
"strings"
|
||||
|
||||
"l12.xyz/dal/adapter"
|
||||
"l12.xyz/dal/handler"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
"github.com/nesterow/dal/pkg/handler"
|
||||
)
|
||||
|
||||
type SQLiteServer struct {
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
module l12.xyz/dal/facade
|
||||
module github.com/nesterow/dal/pkg/facade
|
||||
|
||||
go 1.22.6
|
||||
|
||||
replace l12.xyz/dal/filters v0.0.0 => ../filters
|
||||
replace github.com/nesterow/dal/pkg/filters v0.0.0 => ../filters
|
||||
|
||||
replace l12.xyz/dal/builder v0.0.0 => ../builder
|
||||
replace github.com/nesterow/dal/pkg/builder v0.0.0 => ../builder
|
||||
|
||||
require l12.xyz/dal/adapter v0.0.0
|
||||
require github.com/nesterow/dal/pkg/adapter v0.0.0
|
||||
|
||||
replace l12.xyz/dal/adapter v0.0.0 => ../adapter
|
||||
replace github.com/nesterow/dal/pkg/adapter v0.0.0 => ../adapter
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../utils
|
||||
|
||||
require (
|
||||
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/tinylib/msgp v1.2.0 // indirect
|
||||
l12.xyz/dal/builder v0.0.0 // indirect
|
||||
l12.xyz/dal/filters v0.0.0 // indirect
|
||||
l12.xyz/dal/utils v0.0.0 // indirect
|
||||
l12.xyz/dal/proto v0.0.0
|
||||
github.com/nesterow/dal/pkg/builder v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/filters v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/utils v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/proto v0.0.0
|
||||
)
|
||||
|
||||
replace l12.xyz/dal/proto v0.0.0 => ../proto
|
||||
replace github.com/nesterow/dal/pkg/proto v0.0.0 => ../proto
|
||||
|
||||
require l12.xyz/dal/handler v0.0.0
|
||||
require github.com/nesterow/dal/pkg/handler v0.0.0
|
||||
|
||||
replace l12.xyz/dal/handler v0.0.0 => ../handler
|
||||
replace github.com/nesterow/dal/pkg/handler v0.0.0 => ../handler
|
||||
|
|
|
@ -3,7 +3,7 @@ package filters
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"l12.xyz/dal/utils"
|
||||
"github.com/nesterow/dal/pkg/utils"
|
||||
)
|
||||
|
||||
type Between struct {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"strings"
|
||||
|
||||
"l12.xyz/dal/utils"
|
||||
"github.com/nesterow/dal/pkg/utils"
|
||||
)
|
||||
|
||||
type In struct {
|
||||
|
|
|
@ -3,7 +3,7 @@ package filters
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"l12.xyz/dal/utils"
|
||||
"github.com/nesterow/dal/pkg/utils"
|
||||
)
|
||||
|
||||
type NotBetween struct {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"strings"
|
||||
|
||||
"l12.xyz/dal/utils"
|
||||
"github.com/nesterow/dal/pkg/utils"
|
||||
)
|
||||
|
||||
type NotIn struct {
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
module l12.xyz/dal/filters
|
||||
module github.com/nesterow/dal/pkg/filters
|
||||
|
||||
go 1.22.6
|
||||
|
||||
require github.com/pkg/errors v0.9.1 // indirect
|
||||
|
||||
require l12.xyz/dal/utils v0.0.0
|
||||
require github.com/nesterow/dal/pkg/utils v0.0.0
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../utils
|
||||
|
||||
require l12.xyz/dal/adapter v0.0.0
|
||||
require github.com/nesterow/dal/pkg/adapter v0.0.0
|
||||
|
||||
replace l12.xyz/dal/adapter v0.0.0 => ../adapter
|
||||
replace github.com/nesterow/dal/pkg/adapter v0.0.0 => ../adapter
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package filters
|
||||
|
||||
import "l12.xyz/dal/adapter"
|
||||
import "github.com/nesterow/dal/pkg/adapter"
|
||||
|
||||
type DialectOpts = adapter.DialectOpts
|
||||
type Dialect = adapter.Dialect
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"testing"
|
||||
|
||||
adapter "l12.xyz/dal/adapter"
|
||||
adapter "github.com/nesterow/dal/pkg/adapter"
|
||||
)
|
||||
|
||||
type SQLiteContext = adapter.CommonDialect
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
module l12.xyz/dal/http
|
||||
module github.com/nesterow/dal/pkg/http
|
||||
|
||||
go 1.22.6
|
||||
|
||||
replace l12.xyz/dal/filters v0.0.0 => ../filters
|
||||
replace github.com/nesterow/dal/pkg/filters v0.0.0 => ../filters
|
||||
|
||||
replace l12.xyz/dal/builder v0.0.0 => ../builder
|
||||
replace github.com/nesterow/dal/pkg/builder v0.0.0 => ../builder
|
||||
|
||||
require l12.xyz/dal/adapter v0.0.0
|
||||
require github.com/nesterow/dal/pkg/adapter v0.0.0
|
||||
|
||||
replace l12.xyz/dal/adapter v0.0.0 => ../adapter
|
||||
replace github.com/nesterow/dal/pkg/adapter v0.0.0 => ../adapter
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../utils
|
||||
|
||||
require l12.xyz/dal/proto v0.0.0
|
||||
require github.com/nesterow/dal/pkg/proto v0.0.0
|
||||
|
||||
replace l12.xyz/dal/proto v0.0.0 => ../proto
|
||||
replace github.com/nesterow/dal/pkg/proto v0.0.0 => ../proto
|
||||
|
||||
require (
|
||||
github.com/mattn/go-sqlite3 v1.14.22
|
||||
|
@ -22,7 +22,7 @@ require (
|
|||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/tinylib/msgp v1.2.0 // indirect
|
||||
|
||||
l12.xyz/dal/builder v0.0.0 // indirect
|
||||
l12.xyz/dal/filters v0.0.0 // indirect
|
||||
l12.xyz/dal/utils v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/builder v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/filters v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/utils v0.0.0 // indirect
|
||||
)
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
"net/http"
|
||||
"reflect"
|
||||
|
||||
"l12.xyz/dal/adapter"
|
||||
"l12.xyz/dal/proto"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
"github.com/nesterow/dal/pkg/proto"
|
||||
)
|
||||
|
||||
/*
|
||||
|
|
|
@ -10,8 +10,8 @@ import (
|
|||
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
|
||||
"l12.xyz/dal/adapter"
|
||||
"l12.xyz/dal/proto"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
"github.com/nesterow/dal/pkg/proto"
|
||||
)
|
||||
|
||||
func TestQueryHandler(t *testing.T) {
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
module l12.xyz/dal/proto
|
||||
module github.com/nesterow/dal/pkg/proto
|
||||
|
||||
go 1.22.6
|
||||
|
||||
require l12.xyz/dal/builder v0.0.0
|
||||
require github.com/nesterow/dal/pkg/builder v0.0.0
|
||||
|
||||
replace l12.xyz/dal/builder v0.0.0 => ../builder
|
||||
replace github.com/nesterow/dal/pkg/builder v0.0.0 => ../builder
|
||||
|
||||
require github.com/tinylib/msgp v1.2.0
|
||||
|
||||
require github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect
|
||||
|
||||
replace l12.xyz/dal/utils v0.0.0 => ../utils
|
||||
replace github.com/nesterow/dal/pkg/utils v0.0.0 => ../utils
|
||||
|
||||
replace l12.xyz/dal/adapter v0.0.0 => ../adapter
|
||||
replace github.com/nesterow/dal/pkg/adapter v0.0.0 => ../adapter
|
||||
|
||||
replace l12.xyz/dal/filters v0.0.0 => ../filters
|
||||
replace github.com/nesterow/dal/pkg/filters v0.0.0 => ../filters
|
||||
|
||||
require (
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
l12.xyz/dal/adapter v0.0.0
|
||||
l12.xyz/dal/filters v0.0.0 // indirect
|
||||
l12.xyz/dal/utils v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/adapter v0.0.0
|
||||
github.com/nesterow/dal/pkg/filters v0.0.0 // indirect
|
||||
github.com/nesterow/dal/pkg/utils v0.0.0 // indirect
|
||||
)
|
||||
|
|
|
@ -6,8 +6,8 @@ import (
|
|||
"slices"
|
||||
"strings"
|
||||
|
||||
"l12.xyz/dal/adapter"
|
||||
"l12.xyz/dal/builder"
|
||||
"github.com/nesterow/dal/pkg/adapter"
|
||||
"github.com/nesterow/dal/pkg/builder"
|
||||
)
|
||||
|
||||
//go:generate msgp
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module l12.xyz/dal/utils
|
||||
module github.com/nesterow/dal/pkg/utils
|
||||
|
||||
go 1.22.6
|
||||
|
||||
|
|
Loading…
Reference in a new issue