[ref] move to builder pkg

Signed-off-by: Anton Nesterov <anton@demiurg.io>
This commit is contained in:
Anton Nesterov 2024-08-09 17:00:52 +02:00
parent b72e67badc
commit d644ef077e
No known key found for this signature in database
GPG key ID: 59121E8AE2851FB5
13 changed files with 13 additions and 13 deletions

View file

@ -1,4 +1,4 @@
package dal package builder
type SQLParts struct { type SQLParts struct {
operation string operation string

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
"fmt" "fmt"

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
"testing" "testing"

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
"fmt" "fmt"

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
"testing" "testing"

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
"fmt" "fmt"

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
"fmt" "fmt"

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
"encoding/json" "encoding/json"

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
"testing" "testing"

View file

@ -1,4 +1,4 @@
module l12.xyz/dal module l12.xyz/dal/builder
go 1.22.6 go 1.22.6
@ -14,4 +14,4 @@ replace l12.xyz/dal/filters v0.0.0 => ../filters
require l12.xyz/dal/adapter v0.0.0 require l12.xyz/dal/adapter v0.0.0
replace l12.xyz/dal/adapter v0.0.0 => ../adapter replace l12.xyz/dal/adapter v0.0.0 => ../adapter

View file

@ -1,4 +1,4 @@
package dal package builder
import ( import (
adapter "l12.xyz/dal/adapter" adapter "l12.xyz/dal/adapter"

View file

@ -1,4 +1,4 @@
package dal package builder
import "sort" import "sort"