diff --git a/.github/ISSUE_TEMPLATE/1.bug.md b/.github/ISSUE_TEMPLATE/1.bug.md index 3d9d49008..9921d9aac 100644 --- a/.github/ISSUE_TEMPLATE/1.bug.md +++ b/.github/ISSUE_TEMPLATE/1.bug.md @@ -48,4 +48,4 @@ Steps: | Go | 1.15.? | | Ent | 0.5.? | | Database | Mysql | -| Driver | https://github.com/go-sql-driver/mysql | \ No newline at end of file +| Driver | https://github.com/go-sql-driver/mysql | diff --git a/.github/ISSUE_TEMPLATE/2.feature.md b/.github/ISSUE_TEMPLATE/2.feature.md index b93f2851d..81189bea7 100644 --- a/.github/ISSUE_TEMPLATE/2.feature.md +++ b/.github/ISSUE_TEMPLATE/2.feature.md @@ -24,4 +24,4 @@ labels: 'status: needs triage' \ No newline at end of file +--> diff --git a/.github/ISSUE_TEMPLATE/3.support.md b/.github/ISSUE_TEMPLATE/3.support.md index a5a50645c..391c5560b 100644 --- a/.github/ISSUE_TEMPLATE/3.support.md +++ b/.github/ISSUE_TEMPLATE/3.support.md @@ -2,4 +2,4 @@ name: Question about: General support labels: 'status: needs triage' ---- \ No newline at end of file +--- diff --git a/README.md b/README.md index 09ca8a1e1..1258ac731 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ with large data-models. ## Quick Installation ```console -go get github.com/facebook/ent/cmd/ent +go get entgo.io/ent/cmd/ent ``` For proper installation using [Go modules], visit [entgo.io website][entgo instal]. diff --git a/cmd/ent/ent.go b/cmd/ent/ent.go index bbca228a1..97fbe5f9f 100644 --- a/cmd/ent/ent.go +++ b/cmd/ent/ent.go @@ -7,7 +7,7 @@ package main import ( "log" - "github.com/facebook/ent/cmd/internal/base" + "entgo.io/ent/cmd/internal/base" "github.com/spf13/cobra" ) diff --git a/cmd/ent/ent_test.go b/cmd/ent/ent_test.go index 358584214..1e4686ee4 100644 --- a/cmd/ent/ent_test.go +++ b/cmd/ent/ent_test.go @@ -15,7 +15,7 @@ import ( func TestCmd(t *testing.T) { defer os.RemoveAll("ent") - cmd := exec.Command("go", "run", "github.com/facebook/ent/cmd/ent", "init", "User") + cmd := exec.Command("go", "run", "entgo.io/ent/cmd/ent", "init", "User") stderr := bytes.NewBuffer(nil) cmd.Stderr = stderr require.NoError(t, cmd.Run(), stderr.String()) @@ -25,7 +25,7 @@ func TestCmd(t *testing.T) { _, err = os.Stat("ent/schema/user.go") require.NoError(t, err) - cmd = exec.Command("go", "run", "github.com/facebook/ent/cmd/ent", "generate", "./ent/schema") + cmd = exec.Command("go", "run", "entgo.io/ent/cmd/ent", "generate", "./ent/schema") stderr = bytes.NewBuffer(nil) cmd.Stderr = stderr require.NoError(t, cmd.Run(), stderr.String()) diff --git a/cmd/entc/entc.go b/cmd/entc/entc.go index ae003d16a..c50fe927e 100644 --- a/cmd/entc/entc.go +++ b/cmd/entc/entc.go @@ -10,8 +10,8 @@ import ( "log" "path/filepath" - "github.com/facebook/ent/cmd/internal/base" - "github.com/facebook/ent/entc/gen" + "entgo.io/ent/cmd/internal/base" + "entgo.io/ent/entc/gen" "github.com/spf13/cobra" ) @@ -30,11 +30,11 @@ func main() { func migrate(c *gen.Config) { var ( target = filepath.Join(c.Target, "generate.go") - oldCmd = []byte("github.com/facebook/ent/cmd/entc") + oldCmd = []byte("entgo.io/ent/cmd/entc") ) buf, err := ioutil.ReadFile(target) if err != nil || !bytes.Contains(buf, oldCmd) { return } - _ = ioutil.WriteFile(target, bytes.ReplaceAll(buf, oldCmd, []byte("github.com/facebook/ent/cmd/ent")), 0644) + _ = ioutil.WriteFile(target, bytes.ReplaceAll(buf, oldCmd, []byte("entgo.io/ent/cmd/ent")), 0644) } diff --git a/cmd/entc/entc_test.go b/cmd/entc/entc_test.go index 500ff0c00..b99a33d82 100644 --- a/cmd/entc/entc_test.go +++ b/cmd/entc/entc_test.go @@ -15,7 +15,7 @@ import ( func TestCmd(t *testing.T) { defer os.RemoveAll("ent") - cmd := exec.Command("go", "run", "github.com/facebook/ent/cmd/entc", "init", "User") + cmd := exec.Command("go", "run", "entgo.io/ent/cmd/entc", "init", "User") stderr := bytes.NewBuffer(nil) cmd.Stderr = stderr require.NoError(t, cmd.Run(), stderr.String()) @@ -25,7 +25,7 @@ func TestCmd(t *testing.T) { _, err = os.Stat("ent/schema/user.go") require.NoError(t, err) - cmd = exec.Command("go", "run", "github.com/facebook/ent/cmd/entc", "generate", "./ent/schema") + cmd = exec.Command("go", "run", "entgo.io/ent/cmd/entc", "generate", "./ent/schema") stderr = bytes.NewBuffer(nil) cmd.Stderr = stderr require.NoError(t, cmd.Run(), stderr.String()) diff --git a/cmd/internal/base/base.go b/cmd/internal/base/base.go index 4b9b487d7..0bb88c293 100644 --- a/cmd/internal/base/base.go +++ b/cmd/internal/base/base.go @@ -17,10 +17,10 @@ import ( "text/template" "unicode" - "github.com/facebook/ent/cmd/internal/printer" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/cmd/internal/printer" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" + "entgo.io/ent/schema/field" "github.com/spf13/cobra" ) @@ -218,7 +218,7 @@ func createDir(target string) error { var tmpl = template.Must(template.New("schema"). Parse(`package schema -import "github.com/facebook/ent" +import "entgo.io/ent" // {{ . }} holds the schema definition for the {{ . }} entity. type {{ . }} struct { @@ -240,7 +240,7 @@ const ( // default schema package path. defaultSchema = "ent/schema" // ent/generate.go file used for "go generate" command. - genFile = "package ent\n\n//go:generate go run github.com/facebook/ent/cmd/ent generate ./schema\n" + genFile = "package ent\n\n//go:generate go run entgo.io/ent/cmd/ent generate ./schema\n" ) // examples formats the given examples to the cli. diff --git a/cmd/internal/printer/printer.go b/cmd/internal/printer/printer.go index 37f2729c2..62960bf66 100644 --- a/cmd/internal/printer/printer.go +++ b/cmd/internal/printer/printer.go @@ -11,7 +11,7 @@ import ( "strconv" "strings" - "github.com/facebook/ent/entc/gen" + "entgo.io/ent/entc/gen" "github.com/olekukonko/tablewriter" ) diff --git a/cmd/internal/printer/printer_test.go b/cmd/internal/printer/printer_test.go index c44057fc7..a82bb3262 100644 --- a/cmd/internal/printer/printer_test.go +++ b/cmd/internal/printer/printer_test.go @@ -8,8 +8,8 @@ import ( "strings" "testing" - "github.com/facebook/ent/entc/gen" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/entc/gen" + "entgo.io/ent/schema/field" "github.com/stretchr/testify/assert" ) diff --git a/dialect/entsql/annotation.go b/dialect/entsql/annotation.go index c61f52923..d942194ba 100644 --- a/dialect/entsql/annotation.go +++ b/dialect/entsql/annotation.go @@ -4,7 +4,7 @@ package entsql -import "github.com/facebook/ent/schema" +import "entgo.io/ent/schema" // Annotation is a builtin schema annotation for attaching // SQL metadata to schema objects for both codegen and runtime. diff --git a/dialect/gremlin/driver.go b/dialect/gremlin/driver.go index 230dd2536..ed3fcbb40 100644 --- a/dialect/gremlin/driver.go +++ b/dialect/gremlin/driver.go @@ -8,8 +8,8 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/gremlin/graph/dsl" ) // Driver is a dialect.Driver implementation for TinkerPop gremlin. diff --git a/dialect/gremlin/graph/dsl/__/dsl.go b/dialect/gremlin/graph/dsl/__/dsl.go index b9afebcde..bdb2e4d49 100644 --- a/dialect/gremlin/graph/dsl/__/dsl.go +++ b/dialect/gremlin/graph/dsl/__/dsl.go @@ -4,7 +4,7 @@ package __ -import "github.com/facebook/ent/dialect/gremlin/graph/dsl" +import "entgo.io/ent/dialect/gremlin/graph/dsl" // As is the api for calling __.As(). func As(args ...interface{}) *dsl.Traversal { return New().As(args...) } diff --git a/dialect/gremlin/graph/dsl/dsl_test.go b/dialect/gremlin/graph/dsl/dsl_test.go index d0662bde8..c4e07e6e6 100644 --- a/dialect/gremlin/graph/dsl/dsl_test.go +++ b/dialect/gremlin/graph/dsl/dsl_test.go @@ -8,10 +8,10 @@ import ( "strconv" "testing" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" "github.com/stretchr/testify/require" ) diff --git a/dialect/gremlin/graph/dsl/g/g.go b/dialect/gremlin/graph/dsl/g/g.go index e085af2fa..a2aed0250 100644 --- a/dialect/gremlin/graph/dsl/g/g.go +++ b/dialect/gremlin/graph/dsl/g/g.go @@ -4,7 +4,7 @@ package g -import "github.com/facebook/ent/dialect/gremlin/graph/dsl" +import "entgo.io/ent/dialect/gremlin/graph/dsl" // V is the api for calling g.V(). func V(args ...interface{}) *dsl.Traversal { return dsl.NewTraversal().V(args...) } diff --git a/dialect/gremlin/graph/dsl/p/p.go b/dialect/gremlin/graph/dsl/p/p.go index 43fa74fca..dae2b2700 100644 --- a/dialect/gremlin/graph/dsl/p/p.go +++ b/dialect/gremlin/graph/dsl/p/p.go @@ -5,7 +5,7 @@ package p import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl" ) // EQ is the equal predicate. diff --git a/dialect/gremlin/graph/edge.go b/dialect/gremlin/graph/edge.go index ea71c55b8..c172e34f7 100644 --- a/dialect/gremlin/graph/edge.go +++ b/dialect/gremlin/graph/edge.go @@ -7,7 +7,7 @@ package graph import ( "fmt" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/encoding/graphson" "github.com/pkg/errors" ) diff --git a/dialect/gremlin/graph/edge_test.go b/dialect/gremlin/graph/edge_test.go index 60b8561d9..8c8b4b61c 100644 --- a/dialect/gremlin/graph/edge_test.go +++ b/dialect/gremlin/graph/edge_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/encoding/graphson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/dialect/gremlin/graph/vertex.go b/dialect/gremlin/graph/vertex.go index 40de55658..0dfdcfd4f 100644 --- a/dialect/gremlin/graph/vertex.go +++ b/dialect/gremlin/graph/vertex.go @@ -7,7 +7,7 @@ package graph import ( "fmt" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/encoding/graphson" ) // Vertex represents a graph vertex. diff --git a/dialect/gremlin/graph/vertex_test.go b/dialect/gremlin/graph/vertex_test.go index 7aa9a335e..d56ea31da 100644 --- a/dialect/gremlin/graph/vertex_test.go +++ b/dialect/gremlin/graph/vertex_test.go @@ -8,7 +8,7 @@ import ( "fmt" "testing" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/encoding/graphson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/dialect/gremlin/http.go b/dialect/gremlin/http.go index 8aefb1e65..f204fe22e 100644 --- a/dialect/gremlin/http.go +++ b/dialect/gremlin/http.go @@ -11,7 +11,7 @@ import ( "net/http" "net/url" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/encoding/graphson" jsoniter "github.com/json-iterator/go" "github.com/pkg/errors" diff --git a/dialect/gremlin/http_test.go b/dialect/gremlin/http_test.go index 2e8c3944b..a6c86626d 100644 --- a/dialect/gremlin/http_test.go +++ b/dialect/gremlin/http_test.go @@ -12,7 +12,7 @@ import ( "net/http/httptest" "testing" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/encoding/graphson" jsoniter "github.com/json-iterator/go" "github.com/stretchr/testify/assert" diff --git a/dialect/gremlin/internal/ws/conn.go b/dialect/gremlin/internal/ws/conn.go index 7d31a0666..29c80da6e 100644 --- a/dialect/gremlin/internal/ws/conn.go +++ b/dialect/gremlin/internal/ws/conn.go @@ -12,9 +12,9 @@ import ( "sync" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/encoding" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/encoding" + "entgo.io/ent/dialect/gremlin/encoding/graphson" "github.com/gorilla/websocket" "github.com/pkg/errors" diff --git a/dialect/gremlin/internal/ws/conn_test.go b/dialect/gremlin/internal/ws/conn_test.go index 59436667a..f7439a9d1 100644 --- a/dialect/gremlin/internal/ws/conn_test.go +++ b/dialect/gremlin/internal/ws/conn_test.go @@ -12,8 +12,8 @@ import ( "sync" "testing" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/encoding/graphson" "github.com/gorilla/websocket" "github.com/stretchr/testify/assert" diff --git a/dialect/gremlin/ocgremlin/client.go b/dialect/gremlin/ocgremlin/client.go index 4904aaf35..f9308ecbc 100644 --- a/dialect/gremlin/ocgremlin/client.go +++ b/dialect/gremlin/ocgremlin/client.go @@ -7,7 +7,7 @@ package ocgremlin import ( "context" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" "go.opencensus.io/trace" ) diff --git a/dialect/gremlin/ocgremlin/client_test.go b/dialect/gremlin/ocgremlin/client_test.go index 2b8c3639e..d6969886b 100644 --- a/dialect/gremlin/ocgremlin/client_test.go +++ b/dialect/gremlin/ocgremlin/client_test.go @@ -9,7 +9,7 @@ import ( "errors" "testing" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" "github.com/stretchr/testify/mock" "go.opencensus.io/trace" diff --git a/dialect/gremlin/ocgremlin/stats.go b/dialect/gremlin/ocgremlin/stats.go index 9eacdf5c3..3eac38358 100644 --- a/dialect/gremlin/ocgremlin/stats.go +++ b/dialect/gremlin/ocgremlin/stats.go @@ -9,7 +9,7 @@ import ( "strconv" "time" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" "go.opencensus.io/stats" "go.opencensus.io/stats/view" diff --git a/dialect/gremlin/ocgremlin/stats_test.go b/dialect/gremlin/ocgremlin/stats_test.go index b6f90f873..5709d384f 100644 --- a/dialect/gremlin/ocgremlin/stats_test.go +++ b/dialect/gremlin/ocgremlin/stats_test.go @@ -9,8 +9,8 @@ import ( "strings" "testing" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/encoding/graphson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/dialect/gremlin/ocgremlin/trace.go b/dialect/gremlin/ocgremlin/trace.go index 62c808317..a2b3f8385 100644 --- a/dialect/gremlin/ocgremlin/trace.go +++ b/dialect/gremlin/ocgremlin/trace.go @@ -8,7 +8,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" "go.opencensus.io/trace" ) diff --git a/dialect/gremlin/ocgremlin/trace_test.go b/dialect/gremlin/ocgremlin/trace_test.go index 6162449f5..5cc6085f0 100644 --- a/dialect/gremlin/ocgremlin/trace_test.go +++ b/dialect/gremlin/ocgremlin/trace_test.go @@ -11,7 +11,7 @@ import ( "fmt" "testing" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/dialect/gremlin/request_test.go b/dialect/gremlin/request_test.go index d48a783e8..be49b5efc 100644 --- a/dialect/gremlin/request_test.go +++ b/dialect/gremlin/request_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/encoding/graphson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/dialect/gremlin/response.go b/dialect/gremlin/response.go index c5c46ce4d..5a482a88c 100644 --- a/dialect/gremlin/response.go +++ b/dialect/gremlin/response.go @@ -5,8 +5,8 @@ package gremlin import ( - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" - "github.com/facebook/ent/dialect/gremlin/graph" + "entgo.io/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/graph" "github.com/pkg/errors" ) diff --git a/dialect/gremlin/response_test.go b/dialect/gremlin/response_test.go index 659d85c93..96640eae8 100644 --- a/dialect/gremlin/response_test.go +++ b/dialect/gremlin/response_test.go @@ -8,8 +8,8 @@ import ( "reflect" "testing" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" - "github.com/facebook/ent/dialect/gremlin/graph" + "entgo.io/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/graph" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/dialect/sql/builder.go b/dialect/sql/builder.go index 63f2607aa..0b2644ff2 100644 --- a/dialect/sql/builder.go +++ b/dialect/sql/builder.go @@ -19,7 +19,7 @@ import ( "strconv" "strings" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Querier wraps the basic Query method that is implemented diff --git a/dialect/sql/builder_test.go b/dialect/sql/builder_test.go index 119c2b4bf..02d052c05 100644 --- a/dialect/sql/builder_test.go +++ b/dialect/sql/builder_test.go @@ -11,7 +11,7 @@ import ( "strings" "testing" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" "github.com/stretchr/testify/require" ) diff --git a/dialect/sql/driver.go b/dialect/sql/driver.go index 643e15063..33cc1840a 100644 --- a/dialect/sql/driver.go +++ b/dialect/sql/driver.go @@ -11,7 +11,7 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Driver is a dialect.Driver implementation for SQL based databases. diff --git a/dialect/sql/schema/inspect.go b/dialect/sql/schema/inspect.go index 5a5f48501..83c6d4edc 100644 --- a/dialect/sql/schema/inspect.go +++ b/dialect/sql/schema/inspect.go @@ -8,8 +8,8 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" ) // MigrateOption allows for managing schema configuration using functional options. diff --git a/dialect/sql/schema/inspect_test.go b/dialect/sql/schema/inspect_test.go index 24c380980..7d3033c0e 100644 --- a/dialect/sql/schema/inspect_test.go +++ b/dialect/sql/schema/inspect_test.go @@ -11,9 +11,9 @@ import ( "path" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" "github.com/DATA-DOG/go-sqlmock" "github.com/stretchr/testify/require" diff --git a/dialect/sql/schema/migrate.go b/dialect/sql/schema/migrate.go index 4f1389da8..db0bfb497 100644 --- a/dialect/sql/schema/migrate.go +++ b/dialect/sql/schema/migrate.go @@ -11,9 +11,9 @@ import ( "math" "sort" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" ) const ( diff --git a/dialect/sql/schema/migrate_test.go b/dialect/sql/schema/migrate_test.go index 5b8710017..71a6780cb 100644 --- a/dialect/sql/schema/migrate_test.go +++ b/dialect/sql/schema/migrate_test.go @@ -8,8 +8,8 @@ import ( "context" "testing" + "entgo.io/ent/dialect/sql" "github.com/DATA-DOG/go-sqlmock" - "github.com/facebook/ent/dialect/sql" "github.com/stretchr/testify/require" ) diff --git a/dialect/sql/schema/mysql.go b/dialect/sql/schema/mysql.go index c12c2bb12..8f9c34130 100644 --- a/dialect/sql/schema/mysql.go +++ b/dialect/sql/schema/mysql.go @@ -12,9 +12,9 @@ import ( "strconv" "strings" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" ) // MySQL is a MySQL migration driver. diff --git a/dialect/sql/schema/mysql_test.go b/dialect/sql/schema/mysql_test.go index 1451f0be6..7fa97c6b7 100644 --- a/dialect/sql/schema/mysql_test.go +++ b/dialect/sql/schema/mysql_test.go @@ -11,10 +11,10 @@ import ( "strings" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" "github.com/DATA-DOG/go-sqlmock" "github.com/stretchr/testify/require" diff --git a/dialect/sql/schema/postgres.go b/dialect/sql/schema/postgres.go index f062d2938..013fb68f0 100644 --- a/dialect/sql/schema/postgres.go +++ b/dialect/sql/schema/postgres.go @@ -9,9 +9,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" ) // Postgres is a postgres migration driver. diff --git a/dialect/sql/schema/postgres_test.go b/dialect/sql/schema/postgres_test.go index 6b19e2488..2726079d0 100644 --- a/dialect/sql/schema/postgres_test.go +++ b/dialect/sql/schema/postgres_test.go @@ -11,9 +11,9 @@ import ( "strings" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" "github.com/DATA-DOG/go-sqlmock" "github.com/stretchr/testify/require" diff --git a/dialect/sql/schema/schema.go b/dialect/sql/schema/schema.go index 47d64a2cf..7c3f8ced9 100644 --- a/dialect/sql/schema/schema.go +++ b/dialect/sql/schema/schema.go @@ -10,9 +10,9 @@ import ( "strconv" "strings" - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" ) const ( diff --git a/dialect/sql/schema/schema_test.go b/dialect/sql/schema/schema_test.go index b7f7c5014..0d2eed907 100644 --- a/dialect/sql/schema/schema_test.go +++ b/dialect/sql/schema/schema_test.go @@ -7,7 +7,7 @@ package schema import ( "testing" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/schema/field" "github.com/stretchr/testify/require" ) diff --git a/dialect/sql/schema/sqlite.go b/dialect/sql/schema/sqlite.go index 947e04b37..f2ff463a8 100644 --- a/dialect/sql/schema/sqlite.go +++ b/dialect/sql/schema/sqlite.go @@ -9,9 +9,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" ) // SQLite is an SQLite migration driver. diff --git a/dialect/sql/schema/sqlite_test.go b/dialect/sql/schema/sqlite_test.go index 739228290..38a92631f 100644 --- a/dialect/sql/schema/sqlite_test.go +++ b/dialect/sql/schema/sqlite_test.go @@ -10,9 +10,9 @@ import ( "math" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" "github.com/DATA-DOG/go-sqlmock" "github.com/stretchr/testify/require" diff --git a/dialect/sql/schema/writer.go b/dialect/sql/schema/writer.go index 282bc2a3c..d4bf68a9f 100644 --- a/dialect/sql/schema/writer.go +++ b/dialect/sql/schema/writer.go @@ -9,7 +9,7 @@ import ( "io" "strings" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // WriteDriver is a driver that writes all driver exec operations to its writer. diff --git a/dialect/sql/schema/writer_test.go b/dialect/sql/schema/writer_test.go index 7dd139be0..efd7a2b37 100644 --- a/dialect/sql/schema/writer_test.go +++ b/dialect/sql/schema/writer_test.go @@ -10,7 +10,7 @@ import ( "strings" "testing" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" "github.com/stretchr/testify/require" ) diff --git a/dialect/sql/sqlgraph/entql.go b/dialect/sql/sqlgraph/entql.go index c401ded25..dd6979124 100644 --- a/dialect/sql/sqlgraph/entql.go +++ b/dialect/sql/sqlgraph/entql.go @@ -7,8 +7,8 @@ package sqlgraph import ( "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entql" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entql" ) type ( diff --git a/dialect/sql/sqlgraph/entql_test.go b/dialect/sql/sqlgraph/entql_test.go index 821b248f5..2caa69bf5 100644 --- a/dialect/sql/sqlgraph/entql_test.go +++ b/dialect/sql/sqlgraph/entql_test.go @@ -8,10 +8,10 @@ import ( "strconv" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entql" + "entgo.io/ent/schema/field" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/dialect/sql/sqlgraph/graph.go b/dialect/sql/sqlgraph/graph.go index 91b0758f2..b978356f1 100644 --- a/dialect/sql/sqlgraph/graph.go +++ b/dialect/sql/sqlgraph/graph.go @@ -14,9 +14,9 @@ import ( "math" "sort" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" ) // Rel is a relation type of an edge. diff --git a/dialect/sql/sqlgraph/graph_test.go b/dialect/sql/sqlgraph/graph_test.go index 684089fbe..6768f0db7 100644 --- a/dialect/sql/sqlgraph/graph_test.go +++ b/dialect/sql/sqlgraph/graph_test.go @@ -12,9 +12,9 @@ import ( "strings" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/schema/field" "github.com/DATA-DOG/go-sqlmock" "github.com/stretchr/testify/require" diff --git a/dialect/sql/sqljson/sqljson.go b/dialect/sql/sqljson/sqljson.go index ffe5355c7..ec5aec240 100644 --- a/dialect/sql/sqljson/sqljson.go +++ b/dialect/sql/sqljson/sqljson.go @@ -10,8 +10,8 @@ import ( "strings" "unicode" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" ) // HasKey return a predicate for checking that a JSON key diff --git a/dialect/sql/sqljson/sqljson_test.go b/dialect/sql/sqljson/sqljson_test.go index e955dca41..34e202731 100644 --- a/dialect/sql/sqljson/sqljson_test.go +++ b/dialect/sql/sqljson/sqljson_test.go @@ -8,9 +8,9 @@ import ( "strconv" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqljson" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqljson" "github.com/stretchr/testify/require" ) diff --git a/doc/md/code-gen.md b/doc/md/code-gen.md index 65929b51a..4700d77b9 100755 --- a/doc/md/code-gen.md +++ b/doc/md/code-gen.md @@ -9,7 +9,7 @@ The project comes with a codegen tool called `ent`. In order to install `ent` run the following command: ```bash -go get github.com/facebook/ent/cmd/ent +go get entgo.io/ent/cmd/ent ``` ## Initialize A New Schema @@ -17,7 +17,7 @@ go get github.com/facebook/ent/cmd/ent In order to generate one or more schema templates, run `ent init` as follows: ```bash -go run github.com/facebook/ent/cmd/ent init User Pet +go run entgo.io/ent/cmd/ent init User Pet ``` `init` will create the 2 schemas (`user.go` and `pet.go`) under the `ent/schema` directory. @@ -59,7 +59,7 @@ go mod init And then, re-run the following command in order to add `ent` to your `go.mod` file: ```console -go get github.com/facebook/ent/cmd/ent +go get entgo.io/ent/cmd/ent ``` Add a `generate.go` file to your project under `/ent`: @@ -67,7 +67,7 @@ Add a `generate.go` file to your project under `/ent`: ```go package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate ./schema +//go:generate go run entgo.io/ent/cmd/ent generate ./schema ``` Finally, you can run `go generate ./ent` from the root directory of your project @@ -109,7 +109,7 @@ a file with the same name as the template. The flag format supports `file`, `di as follows: ```console -go run github.com/facebook/ent/cmd/ent generate --template --template glob="path/to/*.tmpl" ./ent/schema +go run entgo.io/ent/cmd/ent generate --template --template glob="path/to/*.tmpl" ./ent/schema ``` More information and examples can be found in the [external templates doc](templates.md). @@ -124,9 +124,9 @@ package main import ( "log" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" + "entgo.io/ent/schema/field" ) func main() { @@ -140,7 +140,7 @@ func main() { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/entcpkg). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/entcpkg). ## Schema Description @@ -148,7 +148,7 @@ The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/ In order to get a description of your graph schema, run: ```bash -go run github.com/facebook/ent/cmd/ent describe ./ent/schema +go run entgo.io/ent/cmd/ent describe ./ent/schema ``` An example for the output is as follows: @@ -198,8 +198,8 @@ import ( "log" "reflect" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" ) func main() { diff --git a/doc/md/crud.md b/doc/md/crud.md index 19259859d..f22f42a35 100755 --- a/doc/md/crud.md +++ b/doc/md/crud.md @@ -295,7 +295,7 @@ _, err := client.File. Each generated node type has its own type of mutation. For example, all [`User` builders](crud.md#create-an-entity), share the same generated `UserMutation` object. -However, all builder types implement the generic `ent.Mutation` interface. +However, all builder types implement the generic `ent.Mutation` interface. For example, in order to write a generic code that apply a set of methods on both `ent.UserCreate` and `ent.UserUpdate`, use the `UserMutation` object: diff --git a/doc/md/faq.md b/doc/md/faq.md index 4dd40f8c4..100b814ac 100644 --- a/doc/md/faq.md +++ b/doc/md/faq.md @@ -88,7 +88,7 @@ func VersionHook() ent.Hook { The preferred way for writing such an extension is to use [ent.Mixin](schema-mixin.md). Use the `Fields` option for setting the fields that are shared between all schemas that import the mixed-schema, and use the `Hooks` option for attaching a mutation-hook for all mutations that are being applied on these schemas. Here's an example, based on a -discussion in the [repository issue-tracker](https://github.com/facebook/ent/issues/830): +discussion in the [repository issue-tracker](https://entgo.io/ent/issues/830): ```go // AuditMixin implements the ent.Mixin for sharing @@ -182,7 +182,7 @@ users := client.User. ``` For more examples, go to the [predicates](predicates.md#custom-predicates) page, or search in the repository -issue-tracker for more advance examples like [issue-842](https://github.com/facebook/ent/issues/842#issuecomment-707896368). +issue-tracker for more advance examples like [issue-842](https://entgo.io/ent/issues/842#issuecomment-707896368). #### How to add custom predicates to the codegen assets? diff --git a/doc/md/features.md b/doc/md/features.md index 229523422..aced9ddca 100644 --- a/doc/md/features.md +++ b/doc/md/features.md @@ -13,7 +13,7 @@ Feature flags can be provided either by CLI flags or as arguments to the `gen` p #### CLI ```console -go run github.com/facebook/ent/cmd/ent generate --feature privacy,entql ./ent/schema +go run entgo.io/ent/cmd/ent generate --feature privacy,entql ./ent/schema ``` #### Go @@ -27,8 +27,8 @@ import ( "log" "text/template" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" ) func main() { @@ -71,7 +71,7 @@ The `schema/snapshot` option tells `entc` (ent codegen) to store a snapshot of t and use it to automatically solve merge conflicts when user's schema can't be built. This option can be added to projects using the `--feature schema/snapshot` flag, but please see -[facebook/ent/issues/852](https://github.com/facebook/ent/issues/852) to get more context about it. +[facebook/ent/issues/852](https://entgo.io/ent/issues/852) to get more context about it. #### Schema Config diff --git a/doc/md/getting-started.md b/doc/md/getting-started.md index aafb9d1eb..f5329e85e 100755 --- a/doc/md/getting-started.md +++ b/doc/md/getting-started.md @@ -20,11 +20,11 @@ and maintain applications with large data-models and sticks with the following p ## Installation ```console -go get github.com/facebook/ent/cmd/ent +go get entgo.io/ent/cmd/ent ``` After installing `ent` codegen tool, you should have it in your `PATH`. -If you don't find it your path, you can also run: `go run github.com/facebook/ent/cmd/ent ` +If you don't find it your path, you can also run: `go run entgo.io/ent/cmd/ent ` ## Setup A Go Environment @@ -49,7 +49,7 @@ The command above will generate the schema for `User` under `/ent/schem package schema -import "github.com/facebook/ent" +import "entgo.io/ent" // User holds the schema definition for the User entity. type User struct { @@ -74,8 +74,8 @@ Add 2 fields to the `User` schema: package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) @@ -205,7 +205,7 @@ Let's create 2 additional entities named `Car` and `Group` with a few fields. We to generate the initial schemas: ```console -go run github.com/facebook/ent/cmd/ent init Car Group +go run entgo.io/ent/cmd/ent init Car Group ``` And then we add the rest of the fields manually: @@ -213,8 +213,8 @@ And then we add the rest of the fields manually: import ( "regexp" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // Fields of the Car. @@ -247,8 +247,8 @@ Let's add the `"cars"` edge to the `User` schema, and run `go generate ./ent`: import ( "log" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) // Edges of the User. @@ -342,8 +342,8 @@ in the `User` schema, and run `go generate ./ent`. import ( "log" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) // Edges of the Car. @@ -403,8 +403,8 @@ relationship named `groups`. Let's define this relationship in our schemas: import ( "log" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) // Edges of the Group. @@ -420,8 +420,8 @@ relationship named `groups`. Let's define this relationship in our schemas: import ( "log" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) // Edges of the User. @@ -610,4 +610,4 @@ Now when we have a graph with data, we can run a few queries on it: } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/start). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/start). diff --git a/doc/md/graphql.md b/doc/md/graphql.md index 04d6c080f..f1937e250 100644 --- a/doc/md/graphql.md +++ b/doc/md/graphql.md @@ -8,7 +8,7 @@ library using the [external templates](templates.md) option (i.e. it can be exte ## Quick Introduction -In order to enable the [`entgql`](https://github.com/facebookincubator/ent-contrib/tree/master/entgql) extension to your +In order to enable the [`entgql`](https://entgo.ioincubator/ent-contrib/tree/master/entgql) extension to your project, you need to use the `entc` (ent codegen) package as described [here](code-gen.md#use-entc-as-a-package). Follow these 3 steps to enable it to your project: @@ -22,9 +22,9 @@ package main import ( "log" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" - "github.com/facebookincubator/ent-contrib/entgql" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" + "entgo.ioincubator/ent-contrib/entgql" ) func main() { @@ -46,7 +46,7 @@ package ent ``` Note that `ent/entc.go` is ignored using a build tag, and it's executed by the `go generate` command -through the `generate.go` file. The full example can be found in the [ent-contrib repository](https://github.com/facebookincubator/ent-contrib/blob/master/entgql/internal/todo). +through the `generate.go` file. The full example can be found in the [ent-contrib repository](https://entgo.ioincubator/ent-contrib/blob/master/entgql/internal/todo). 3\. Run codegen for your ent project: @@ -86,7 +86,7 @@ func (r *queryResolver) Node(ctx context.Context, guid string) (ent.Noder, error ## GQL Configuration -Here's a configuration example for a todo app as exists in [ent-contrib/entgql/todo](https://github.com/facebookincubator/ent-contrib/tree/master/entgql/internal/todo). +Here's a configuration example for a todo app as exists in [ent-contrib/entgql/todo](https://entgo.ioincubator/ent-contrib/tree/master/entgql/internal/todo). ```yaml schema: @@ -100,7 +100,7 @@ resolver: # gqlgen will search for any type names in the schema in the generated # ent package. If they match it will use them, otherwise it will new ones. autobind: - - github.com/facebookincubator/ent-contrib/entgql/internal/todo/ent + - entgo.ioincubator/ent-contrib/entgql/internal/todo/ent models: ID: @@ -109,7 +109,7 @@ models: Node: model: # ent.Noder is the new interface generated by the Node template. - - github.com/facebookincubator/ent-contrib/entgql/internal/todo/ent.Noder + - entgo.ioincubator/ent-contrib/entgql/internal/todo/ent.Noder ``` ## Pagination @@ -131,7 +131,7 @@ The ordering option allows us to apply an ordering on the edges returned from a ### Example Let's go over the steps needed in order to add ordering to an existing GraphQL type. -The code example is based on a todo-app that can be found in [ent-contrib/entql/todo](https://github.com/facebookincubator/ent-contrib/tree/master/entgql/internal/todo). +The code example is based on a todo-app that can be found in [ent-contrib/entql/todo](https://entgo.ioincubator/ent-contrib/tree/master/entgql/internal/todo). ### Defining order fields in ent/schema @@ -353,12 +353,12 @@ func (mutationResolver) CreateTodo(ctx context.Context, todo TodoInput) (*ent.To ## Examples -The [ent-contrib](https://github.com/facebookincubator/ent-contrib) contains several examples at the moment: -1. A complete GraphQL server with a simple [Todo App](https://github.com/facebookincubator/ent-contrib/tree/master/entgql/internal/todo) with numeric ID field -2. The same [Todo App](https://github.com/facebookincubator/ent-contrib/tree/master/entgql/internal/todouuid) in 1, but with UUID type for the ID field -3. The same [Todo App](https://github.com/facebookincubator/ent-contrib/tree/master/entgql/internal/todopulid) in 1 and 2, but with a prefixed [ULID](https://github.com/ulid/spec) or `PULID` as the ID field. This example supports the Relay Node API by prefixing IDs with the entity type rather than employing the ID space partitioning in [Universal IDs](migrate.md#universal-ids). +The [ent-contrib](https://entgo.ioincubator/ent-contrib) contains several examples at the moment: +1. A complete GraphQL server with a simple [Todo App](https://entgo.ioincubator/ent-contrib/tree/master/entgql/internal/todo) with numeric ID field +2. The same [Todo App](https://entgo.ioincubator/ent-contrib/tree/master/entgql/internal/todouuid) in 1, but with UUID type for the ID field +3. The same [Todo App](https://entgo.ioincubator/ent-contrib/tree/master/entgql/internal/todopulid) in 1 and 2, but with a prefixed [ULID](https://github.com/ulid/spec) or `PULID` as the ID field. This example supports the Relay Node API by prefixing IDs with the entity type rather than employing the ID space partitioning in [Universal IDs](migrate.md#universal-ids). --- -Please note that this documentation is under development. All code parts reside in [ent-contrib/entgql](https://github.com/facebookincubator/ent-contrib/tree/master/entgql), -and an example of a todo-app can be found in [ent-contrib/entql/todo](https://github.com/facebookincubator/ent-contrib/tree/master/entgql/internal/todo). +Please note that this documentation is under development. All code parts reside in [ent-contrib/entgql](https://entgo.ioincubator/ent-contrib/tree/master/entgql), +and an example of a todo-app can be found in [ent-contrib/entql/todo](https://entgo.ioincubator/ent-contrib/tree/master/entgql/internal/todo). diff --git a/doc/md/hooks.md b/doc/md/hooks.md index 422a65b46..6aab97d73 100755 --- a/doc/md/hooks.md +++ b/doc/md/hooks.md @@ -21,11 +21,11 @@ There are 5 types of mutations: Each generated node type has its own type of mutation. For example, all [`User` builders](crud.md#create-an-entity), share the same generated `UserMutation` object. -However, all builder types implement the generic `ent.Mutation` interface. +However, all builder types implement the generic `ent.Mutation` interface. ## Hooks -Hooks are functions that get an `ent.Mutator` and return a mutator back. +Hooks are functions that get an `ent.Mutator` and return a mutator back. They function as middleware between mutators. It's similar to the popular HTTP middleware pattern. ```go @@ -155,7 +155,7 @@ import ( gen "/ent" "/ent/hook" - "github.com/facebook/ent" + "entgo.io/ent" ) // Card holds the schema definition for the CreditCard entity. @@ -221,8 +221,8 @@ import ( "/ent/hook" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema/mixin" ) diff --git a/doc/md/migrate.md b/doc/md/migrate.md index ce81ff94e..03f1dc0f9 100755 --- a/doc/md/migrate.md +++ b/doc/md/migrate.md @@ -231,7 +231,7 @@ import ( "/ent" "/ent/migrate" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) func main() { diff --git a/doc/md/privacy.md b/doc/md/privacy.md index 580614fcd..01bed8412 100644 --- a/doc/md/privacy.md +++ b/doc/md/privacy.md @@ -68,7 +68,7 @@ In order to enable the privacy option in your code generation, enable the `priva ```go package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --feature privacy ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --feature privacy ./schema ``` It is recommended to add the [`schema/snapshot`](features.md#auto-solve-merge-conflicts) feature-flag along with the @@ -89,9 +89,9 @@ package main import ( "log" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" - "github.com/facebookincubator/ent-contrib/entgql" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" + "entgo.ioincubator/ent-contrib/entgql" ) func main() { @@ -132,8 +132,8 @@ After running the code-generation (with the feature-flag for privacy), we add th package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/examples/privacyadmin/ent/privacy" + "entgo.io/ent" + "entgo.io/ent/examples/privacyadmin/ent/privacy" ) // User holds the schema definition for the User entity. @@ -165,8 +165,8 @@ package rule import ( "context" - "github.com/facebook/ent/examples/privacyadmin/ent/privacy" - "github.com/facebook/ent/examples/privacyadmin/viewer" + "entgo.io/ent/examples/privacyadmin/ent/privacy" + "entgo.io/ent/examples/privacyadmin/viewer" ) // DenyIfNoViewer is a rule that returns Deny decision if the viewer is @@ -264,7 +264,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/privacyadmin). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/privacyadmin). ### Multi Tenancy @@ -273,7 +273,7 @@ The helper packages `viewer` and `rule` (as mentioned above) also exist in this ![tenant-example](https://s3.eu-central-1.amazonaws.com/entgo.io/assets/tenant_medium.png) -Let's start building this application piece by piece. We begin by creating 3 different schemas (see the full code [here](https://github.com/facebook/ent/tree/master/examples/privacytenant/ent/schema)), +Let's start building this application piece by piece. We begin by creating 3 different schemas (see the full code [here](https://entgo.io/ent/tree/master/examples/privacytenant/ent/schema)), and since we want to share some logic between them, we create another [mixed-in schema](schema-mixin.md) and add it to all other schemas as follows: ```go @@ -562,6 +562,6 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/privacytenant). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/privacytenant). -Please note that this documentation is under active development. \ No newline at end of file +Please note that this documentation is under active development. diff --git a/doc/md/schema-annotations.md b/doc/md/schema-annotations.md index 800d955ab..767896249 100755 --- a/doc/md/schema-annotations.md +++ b/doc/md/schema-annotations.md @@ -5,7 +5,7 @@ title: Annotations Schema annotations allow attaching metadata to schema objects like fields and edges and inject them to external templates. An annotation must be a Go type that is serializable to JSON raw value (e.g. struct, map or slice) -and implement the [Annotation](https://pkg.go.dev/github.com/facebook/ent/schema?tab=doc#Annotation) interface. +and implement the [Annotation](https://pkg.go.dev/entgo.io/ent/schema?tab=doc#Annotation) interface. The builtin annotations allow configuring the different storage drivers (like SQL) and control the code generation output. @@ -17,10 +17,10 @@ A custom table name can be provided for types using the `entsql` annotation as f package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/schema" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/doc/md/schema-def.md b/doc/md/schema-def.md index efe46d76b..a6481c212 100755 --- a/doc/md/schema-def.md +++ b/doc/md/schema-def.md @@ -18,10 +18,10 @@ Here's an example of a schema: package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/index" + "entgo.io/ent" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/index" ) type User struct { @@ -56,7 +56,7 @@ Entity schemas are usually stored inside `ent/schema` directory under the root directory of your project, and can be generated by `entc` as follows: ```console -go run github.com/facebook/ent/cmd/ent init User Group +go run entgo.io/ent/cmd/ent init User Group ``` ## It's Just Another ORM diff --git a/doc/md/schema-edges.md b/doc/md/schema-edges.md index a5f2517be..57d23d7c9 100755 --- a/doc/md/schema-edges.md +++ b/doc/md/schema-edges.md @@ -19,8 +19,8 @@ In the example above, you can see 2 relations declared using edges. Let's go ove package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) // User schema. @@ -49,8 +49,8 @@ func (User) Edges() []ent.Edge { package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) // Pet holds the schema definition for the Pet entity. @@ -95,8 +95,8 @@ more widely below. package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) // Group schema. @@ -124,8 +124,8 @@ func (Group) Edges() []ent.Edge { package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) // User schema. @@ -252,7 +252,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2o2types). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2o2types). ## O2O Same Type @@ -348,7 +348,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2orecur). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2orecur). ## O2O Bidirectional @@ -422,7 +422,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2obidi). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2obidi). ## O2M Two Types @@ -503,7 +503,7 @@ func Do(ctx context.Context, client *ent.Client) error { return nil } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2m2types). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2m2types). ## O2M Same Type @@ -612,7 +612,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2mrecur). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2mrecur). ## M2M Two Types @@ -704,7 +704,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/m2m2types). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/m2m2types). ## M2M Same Type @@ -797,7 +797,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/m2mrecur). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/m2mrecur). ## M2M Bidirectional @@ -860,7 +860,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/m2mbidi). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/m2mbidi). ## Required diff --git a/doc/md/schema-fields.md b/doc/md/schema-fields.md index 46bbb0915..fdc7f56a9 100755 --- a/doc/md/schema-fields.md +++ b/doc/md/schema-fields.md @@ -18,8 +18,8 @@ package schema import ( "time" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // User schema. @@ -66,8 +66,8 @@ import ( "net/url" "github.com/google/uuid" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // User schema. @@ -172,9 +172,9 @@ there is an option to override the default behavior using the `SchemaType` metho package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/schema/field" ) // Card schema. @@ -200,7 +200,7 @@ and for time fields, the type is `time.Time`. The `GoType` method provides an op default ent type with a custom one. The custom type must be either a type that is convertible to the Go basic type, or a type that implements the -[ValueScanner](https://pkg.go.dev/github.com/facebook/ent/schema/field?tab=doc#ValueScanner) interface. +[ValueScanner](https://pkg.go.dev/entgo.io/ent/schema/field?tab=doc#ValueScanner) interface. ```go @@ -209,9 +209,9 @@ package schema import ( "database/sql" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/schema/field" ) // Amount is a custom Go type that's convertible to the basic float64 type. @@ -247,9 +247,9 @@ Examples are a Postgres Range type or Geospatial type package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/schema/field" "github.com/jackc/pgtype" ) @@ -312,8 +312,8 @@ import ( "strings" "time" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) diff --git a/doc/md/schema-indexes.md b/doc/md/schema-indexes.md index c3e39b689..054660688 100755 --- a/doc/md/schema-indexes.md +++ b/doc/md/schema-indexes.md @@ -12,8 +12,8 @@ speed of data retrieval, or defining uniqueness. package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/index" + "entgo.io/ent" + "entgo.io/ent/schema/index" ) // User holds the schema definition for the User entity. @@ -147,7 +147,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/edgeindex). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/edgeindex). ## Dialect Support diff --git a/doc/md/schema-mixin.md b/doc/md/schema-mixin.md index 3438af0ad..d98d5b158 100755 --- a/doc/md/schema-mixin.md +++ b/doc/md/schema-mixin.md @@ -37,9 +37,9 @@ package schema import ( "time" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/mixin" ) // ------------------------------------------------- @@ -133,8 +133,8 @@ In order to use them, add the `mixin.Time` mixin to your schema as follows: package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema/mixin" ) type Pet struct { diff --git a/doc/md/sql-integration.md b/doc/md/sql-integration.md index 86e938731..d3f94b2db 100644 --- a/doc/md/sql-integration.md +++ b/doc/md/sql-integration.md @@ -16,7 +16,7 @@ import ( "time" "/ent" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) func Open() (*ent.Client, error) { @@ -43,7 +43,7 @@ import ( "time" "/ent" - entsql "github.com/facebook/ent/dialect/sql" + entsql "entgo.io/ent/dialect/sql" ) func Open() (*ent.Client, error) { @@ -74,7 +74,7 @@ import ( "contrib.go.opencensus.io/integrations/ocsql" "github.com/go-sql-driver/mysql" - entsql "github.com/facebook/ent/dialect/sql" + entsql "entgo.io/ent/dialect/sql" ) type connector struct { @@ -117,8 +117,8 @@ import ( "/ent" - "github.com/facebook/ent/dialect" - entsql "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect" + entsql "entgo.io/ent/dialect/sql" _ "github.com/jackc/pgx/v4/stdlib" ) diff --git a/doc/md/templates.md b/doc/md/templates.md index 6adc0eda0..8a3a2d68c 100644 --- a/doc/md/templates.md +++ b/doc/md/templates.md @@ -71,7 +71,7 @@ In order to override an existing template, use its name. For example: ## Annotations Schema annotations allow attaching metadata to fields and edges and inject them to external templates. An annotation must be a Go type that is serializable to JSON raw value (e.g. struct, map or slice) -and implement the [Annotation](https://pkg.go.dev/github.com/facebook/ent/schema?tab=doc#Annotation) interface. +and implement the [Annotation](https://pkg.go.dev/entgo.io/ent/schema?tab=doc#Annotation) interface. Here's an example of an annotation and its usage in schema and template: @@ -126,12 +126,12 @@ func (User) Fields() []ent.Field { ## Examples - A custom template for implementing the `Node` API for GraphQL - -[Github](https://github.com/facebook/ent/blob/master/entc/integration/template/ent/template/node.tmpl). +[Github](https://entgo.io/ent/blob/master/entc/integration/template/ent/template/node.tmpl). -- An example for executing external templates with custom functions. See [configuration](https://github.com/facebook/ent/blob/master/examples/entcpkg/ent/entc.go) and its -[README](https://github.com/facebook/ent/blob/master/examples/entcpkg) file. +- An example for executing external templates with custom functions. See [configuration](https://entgo.io/ent/blob/master/examples/entcpkg/ent/entc.go) and its +[README](https://entgo.io/ent/blob/master/examples/entcpkg) file. ## Documentation Templates are executed on either a specific node-type or the entire schema graph. For API -documentation, see the GoDoc. +documentation, see the GoDoc. diff --git a/doc/md/transactions.md b/doc/md/transactions.md index 8f872ebbc..7d5457758 100755 --- a/doc/md/transactions.md +++ b/doc/md/transactions.md @@ -58,7 +58,7 @@ func rollback(tx *ent.Tx, err error) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/traversal). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/traversal). ## Transactional Client @@ -88,7 +88,7 @@ func Gen(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/traversal). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/traversal). ## Best Practices diff --git a/doc/md/traversals.md b/doc/md/traversals.md index 06ad3e573..d93d39388 100755 --- a/doc/md/traversals.md +++ b/doc/md/traversals.md @@ -11,7 +11,7 @@ For the purpose of the example, we'll generate the following graph: The first step is to generate the 3 schemas: `Pet`, `User`, `Group`. ```console -go run github.com/facebook/ent/cmd/ent init Pet User Group +go run entgo.io/ent/cmd/ent init Pet User Group ``` Add the necessary fields and edges for the schemas: @@ -213,4 +213,4 @@ func Traverse(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/traversal). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/traversal). diff --git a/doc/website/README.md b/doc/website/README.md index f3da77ff3..5d962d30b 100755 --- a/doc/website/README.md +++ b/doc/website/README.md @@ -160,7 +160,7 @@ For more information about blog posts, click [here](https://docusaurus.io/docs/e /* you can add custom pages */ { page: 'help', label: 'Help' }, /* you can add external links */ - { href: 'https://github.com/facebook/Docusaurus', label: 'GitHub' }, + { href: 'https://entgo.io/Docusaurus', label: 'GitHub' }, ... ], ... diff --git a/doc/website/siteConfig.js b/doc/website/siteConfig.js index e253b701e..57dfd352f 100644 --- a/doc/website/siteConfig.js +++ b/doc/website/siteConfig.js @@ -17,7 +17,7 @@ const users = [ // You will need to prepend the image path with your baseUrl // if it is not '/', like: '/test-site/img/image.jpg'. image: '/img/undraw_open_source.svg', - infoLink: 'https://www.facebook.com', + infoLink: 'https://www.faceboo.com', pinned: true, }, ]; @@ -37,7 +37,7 @@ const siteConfig = { // For no header links in the top nav bar -> headerLinks: [], headerLinks: [ {doc: 'getting-started', label: 'Docs'}, - {href: 'https://pkg.go.dev/github.com/facebook/ent?tab=doc', label: 'GoDoc'}, + {href: 'https://pkg.go.dev/entgo.io/ent?tab=doc', label: 'GoDoc'}, {href: 'https://github.com/facebook/ent', label: 'Github'}, { blog: true, label: 'Blog' }, ], diff --git a/ent.go b/ent.go index 3452cbcc2..1f5a7b516 100644 --- a/ent.go +++ b/ent.go @@ -8,10 +8,10 @@ package ent import ( "context" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" + "entgo.io/ent/schema" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" ) type ( diff --git a/entc/entc.go b/entc/entc.go index 305c0d291..f732594ff 100644 --- a/entc/entc.go +++ b/entc/entc.go @@ -14,9 +14,9 @@ import ( "path/filepath" "strings" - "github.com/facebook/ent/entc/gen" - "github.com/facebook/ent/entc/internal" - "github.com/facebook/ent/entc/load" + "entgo.io/ent/entc/gen" + "entgo.io/ent/entc/internal" + "entgo.io/ent/entc/load" "golang.org/x/tools/go/packages" ) diff --git a/entc/gen/bench_test.go b/entc/gen/bench_test.go index fbf021960..cafd6e983 100644 --- a/entc/gen/bench_test.go +++ b/entc/gen/bench_test.go @@ -9,9 +9,9 @@ import ( "path/filepath" "testing" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" + "entgo.io/ent/schema/field" "github.com/stretchr/testify/require" ) @@ -25,7 +25,7 @@ func BenchmarkGraph_Gen(b *testing.B) { Storage: storage, IDType: &field.TypeInfo{Type: field.TypeInt}, Target: target, - Package: "github.com/facebook/ent/entc/integration/ent", + Package: "entgo.io/ent/entc/integration/ent", Templates: []*gen.Template{ gen.MustParse(gen.NewTemplate("template"). Funcs(gen.Funcs). diff --git a/entc/gen/func.go b/entc/gen/func.go index 5401e66bb..0e8d8c84f 100644 --- a/entc/gen/func.go +++ b/entc/gen/func.go @@ -17,7 +17,7 @@ import ( "text/template" "unicode" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/schema/field" "github.com/go-openapi/inflect" ) diff --git a/entc/gen/graph.go b/entc/gen/graph.go index 7723fcbe5..49b562848 100644 --- a/entc/gen/graph.go +++ b/entc/gen/graph.go @@ -17,9 +17,9 @@ import ( "runtime/debug" "text/template/parse" - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/entc/load" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/entc/load" + "entgo.io/ent/schema/field" "golang.org/x/tools/imports" ) diff --git a/entc/gen/graph_test.go b/entc/gen/graph_test.go index fffb3ed69..0b17ebea3 100644 --- a/entc/gen/graph_test.go +++ b/entc/gen/graph_test.go @@ -11,8 +11,8 @@ import ( "reflect" "testing" - "github.com/facebook/ent/entc/load" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/entc/load" + "entgo.io/ent/schema/field" "github.com/stretchr/testify/require" ) diff --git a/entc/gen/internal/bindata.go b/entc/gen/internal/bindata.go index f0cf8c13d..68b3c3429 100644 --- a/entc/gen/internal/bindata.go +++ b/entc/gen/internal/bindata.go @@ -211,7 +211,7 @@ func templateBuilderEntqlTmpl() (*asset, error) { return a, nil } -var _templateBuilderMutationTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x4b\x93\xe3\x36\x92\x3e\x8b\xbf\x22\xcd\x68\x7b\xc4\x5a\x99\xb2\xe7\xb6\xed\xad\x43\x4f\x97\xed\x51\xc4\xae\x6b\x63\xba\xbc\x97\x8a\x8e\x31\x8b\x80\x4a\xd8\xe6\x43\x26\x20\x55\x55\xc8\xfa\xef\x13\x99\x00\x48\x80\x2f\x51\xea\xc7\xb8\x0f\x5d\x12\x1f\x40\x22\xf3\xcb\x2f\x33\x91\xd0\xe1\xb0\xbc\x0a\xde\x96\xdb\x97\x4a\x3c\x6e\x14\xfc\xf5\xbb\xef\xff\xf3\xdb\x6d\xc5\x25\x2f\x14\xfc\x94\xa4\xfc\xa1\x2c\x3f\xc0\xaa\x48\x63\x78\x93\x65\x40\x0f\x49\xc0\xfb\xd5\x9e\xb3\x38\xb8\xdb\x08\x09\xb2\xdc\x55\x29\x87\xb4\x64\x1c\x84\x84\x4c\xa4\xbc\x90\x9c\xc1\xae\x60\xbc\x02\xb5\xe1\xf0\x66\x9b\xa4\x1b\x0e\x7f\x8d\xbf\xb3\x77\x61\x5d\xee\x0a\x16\x88\x82\xee\xff\xf7\xea\xed\x8f\xbf\xbc\xfb\x11\xd6\x22\xe3\x60\xae\x55\x65\xa9\x80\x89\x8a\xa7\xaa\xac\x5e\xa0\x5c\x83\x72\x26\x53\x15\xe7\x71\x70\xb5\x3c\x1e\x83\xe0\x70\x00\xc6\xd7\xa2\xe0\x10\xe6\x3b\x95\x28\x51\x16\x21\x98\x1b\xaf\xb6\x1f\x1e\xe1\xf5\x35\x3c\x24\x92\xc3\xab\xf8\x6d\x59\xac\xc5\x63\xfc\xbf\x49\xfa\x21\x79\xe4\xf8\xd0\xe1\x00\x8a\xe7\xdb\x2c\x51\x1c\xc2\x0d\x4f\x18\xaf\x42\x78\x45\xaf\x8b\x7c\x5b\x56\x0a\xe6\xc1\x2c\x4c\xcb\x42\xf1\x67\x15\x06\xb3\x70\x9d\xd3\x1f\xf9\x52\xa4\x61\x10\xcc\x0e\x87\x6f\xa1\x4a\x8a\x47\x0e\xaf\x0a\x9c\xe8\x55\xfc\x4b\xc9\xb8\xc4\x01\x66\xb3\x10\x25\xe8\x4e\xba\xc4\xcb\x85\x73\x21\xd4\xe3\xf0\x82\xd1\xc4\xb3\xf0\x51\xa8\xcd\xee\x21\x4e\xcb\x7c\xb9\x36\x56\x58\xf2\x42\x85\x41\x14\x04\x69\x59\x48\x92\x6a\xb9\x84\xdb\x2d\xaf\x68\xc1\xa0\x5e\xb6\x5c\xc6\xc1\xec\x76\xfb\xb6\xe2\xb8\x18\x00\xb8\x06\x5e\xa8\xd8\x5e\xc1\x7b\x37\x3c\xe3\xfe\x3d\x7d\xa5\xb9\x77\x5b\xf0\xd6\xbd\xdb\x82\x6e\xff\xba\x65\xad\x61\xf5\x95\xe6\x9e\xfb\x6a\x7d\x25\x20\x39\x51\x27\xb5\x88\xa3\x2a\xbb\x7b\xd9\x72\xad\x9e\x5f\x92\x1c\x75\x03\xd7\x10\x7a\x17\x7c\x65\x45\x64\xe6\x81\xe1\x08\x01\x16\x13\x74\xaf\x88\xff\xc7\x7c\x35\xa3\x05\xcb\x25\x78\x4f\x1d\x8f\x50\x71\xe3\x02\x12\x92\x02\xca\x46\xc7\x9b\x44\x01\x3d\xc8\x25\x61\xd4\x17\xb4\xa0\x69\x0d\x7c\x1f\xab\x64\xbb\x89\x03\x5c\x73\x67\x7c\xa9\xaa\x5d\xaa\xe0\x10\xcc\x52\x82\x46\x30\x2b\xb7\x70\xbb\x0d\x66\xea\x65\x8b\x37\x45\xf1\x88\x6b\xc4\xb1\x57\x37\xf1\xdf\x76\x22\x63\xbc\xfa\x49\xf0\x0c\x57\x0c\x57\xf5\x1d\xd4\x15\x69\xcd\xd1\xe8\xda\x2c\x93\x1e\x37\x3a\xc5\x17\xd6\xfd\xe3\xac\x9b\x41\x68\x14\xb1\x86\xa4\x60\xf6\x7a\xfc\xcb\x2e\xe7\x95\x48\xf1\xfb\xdb\xb2\xd8\xf3\x4a\x71\x76\x57\xfe\x2d\x91\x22\xd5\xef\xcc\x12\xc6\xce\x18\xde\x18\xcd\xfb\x9c\x66\x3c\xa9\x38\x33\x02\xe7\xc9\xf6\x5e\xab\xe0\xbd\x56\xd3\xc1\x5f\x1f\x37\xeb\xfb\x91\x3d\x72\xe9\xc9\xfd\x8a\xc7\xbf\x16\xe2\xf7\x9d\x99\x8e\x56\xcd\xfb\xc5\xe2\x7a\x75\xae\x0a\xb5\x48\x99\x1c\x7f\x1b\xa5\xeb\x1d\xc0\x11\x76\x36\xab\x78\x5e\xee\x39\xfb\x88\x21\x5c\xfd\x58\x05\xf5\x0f\xf7\x50\x96\x99\xaf\x4f\x56\x16\xdc\x5c\x2e\x33\xf6\x7f\x49\xb6\xe3\xb0\xde\x15\xe9\xdc\x90\x18\x5a\x12\xff\x46\x30\xbf\xf2\x00\xbc\x00\x5e\x55\x65\x15\x05\xb3\x6d\xc5\x99\x48\x09\xe6\xf7\xef\xeb\x2f\xb1\xf7\x74\x70\x0c\x82\x7d\x52\xc1\x3f\xc9\xe3\xad\x57\xc1\xb5\x19\xd5\xc1\x7b\x34\x2f\x44\x16\xf9\xce\x78\xbb\xb5\x2e\xb9\xad\x44\xa1\x60\x9e\x26\x39\xcf\xec\xf0\x11\x84\xfa\x81\xb0\xc7\x43\xcd\xab\xc7\x23\x24\x59\x56\x3e\x21\x64\x8a\xe4\x91\xe7\x18\xb2\x28\x4a\x70\xa8\x27\xd7\xfe\xb5\x33\xfe\xbb\x93\xa2\x78\x24\x5d\xe0\xd7\x24\x83\x92\x86\x92\x3d\x6e\xda\x4c\x42\xaa\xeb\x2c\x29\x40\xa9\x0a\xfe\xd4\x76\xed\x94\xa8\x56\xe2\xad\x46\x8a\x75\x59\xf5\xd0\x05\x2f\x94\x50\x2f\x71\x80\x13\xf4\x0c\x35\x4f\x8d\xf4\x0b\x20\x76\xc0\x3f\x4a\x42\x1c\xc7\xbd\x72\x46\xd0\x96\x11\xf9\x25\x47\x0d\x7f\xd3\xba\x71\x40\x4c\xd1\xd0\xaf\xc1\xfc\x4b\x17\xc1\x6c\x56\x6e\xeb\xef\xf8\xaf\xdc\xe2\x45\xf5\xe2\x5d\xed\xd0\xf3\xa2\x01\xa8\xf6\xe0\xd7\x90\x27\x1f\xf8\xbc\xc7\x8f\xa3\x45\x30\x3b\x06\x33\xd4\xc6\x3f\x69\x35\x28\x9c\x76\x6b\x5a\xda\x81\x64\x50\xf3\x3c\xa2\xe7\x2a\xae\x76\x55\x01\x79\x60\x78\xdc\xbc\xa0\xf1\x12\x3e\x09\xb5\x09\x6b\x39\xc2\xd5\x8d\x0b\x15\x7c\x14\x79\x96\x2b\xcd\xd3\xab\x1b\x58\x93\xc3\xb4\xf0\x61\x94\xdf\xbc\x32\x17\x0c\xda\xf4\x1a\x0d\x00\xe3\x50\x8b\x48\x10\xc9\x3b\x06\x88\x68\x45\xe8\x23\x73\x64\x05\x5e\x55\xda\xc1\xf0\x4b\x59\xa4\x1c\x30\x87\x88\x6f\x8b\x94\xe3\x95\x3d\x39\xaa\xef\x91\xc1\x6c\x16\x05\xb3\x59\x1e\xd7\x8e\x7c\x6d\x5c\x59\x3d\xc3\x54\x77\x26\x29\x68\xc2\xf8\xa6\x9c\xd3\xeb\xe6\xda\x4c\xac\x21\x8f\x89\x2f\xf4\x77\x92\xf1\x1a\xd6\xb9\x8a\x7f\xc4\x77\xd7\xf3\xf0\xf7\x1d\xaf\x5e\xd0\x6d\xca\x8c\x01\xc9\x28\x61\x5b\x4a\xd5\xa0\x5b\x48\x28\x4a\xa5\x9d\x91\xb3\x30\xa2\x91\x8e\x9a\x4b\xcd\xb0\xf4\x1e\xc9\x03\xd7\x90\xc7\x6f\x33\xc1\x0b\x35\x8f\x7c\x42\x89\x7f\xe6\x0a\x17\xb6\x00\xc1\xcc\x20\xf8\xff\x31\xd2\x94\x4a\x9a\x6e\x06\x0a\xf4\xed\x3c\x1e\x8c\x93\xd7\xf0\x8d\x60\x88\x24\x07\x3f\x03\xf0\x19\x46\x0e\xae\xda\x77\xdb\x93\x10\xc2\x34\xa0\x65\xc7\x8f\x84\x50\x8f\xfd\xcf\xb2\xbd\x99\x03\x05\x5b\x40\x21\xb2\x49\xba\xc3\xa7\xe3\xd5\x8d\x51\xe0\x72\x09\xda\x6a\xa0\x07\x93\x90\x10\xc7\xfd\x86\xe4\xaf\xef\xfc\x06\xeb\xaa\xcc\x7d\xe5\xc0\xaa\x45\xc8\x4f\x89\xc4\xb1\xf8\x33\x4f\x77\x8a\x33\xcc\x96\x12\x50\x55\x52\xc8\x84\x48\x19\xe6\x38\xe0\xdd\x73\xb4\xf0\xaf\x27\x19\xa4\x7a\x7e\x21\x8d\x08\x58\x7f\x90\xee\xe7\x79\x3b\xc3\x8a\xc0\x42\x0c\xae\x8c\xd8\x98\x6c\xe9\x4f\xc8\x88\xfa\xe2\xc1\xb2\x60\x1e\xeb\x4f\x47\xfb\x50\x2c\x0a\xa1\xe6\x51\x6d\x1e\x7d\xd5\x28\xe2\xee\xb9\x51\x42\xa1\x35\x70\xf7\xfc\x1b\xb1\xbc\x95\x41\xea\x5c\xf1\x89\x57\xdc\x5b\xab\xb3\x22\xf9\x03\x8e\x25\x94\x3b\x16\x19\x0d\x4a\xb5\xe1\xd5\x93\x90\x7c\x64\x7d\x77\xcf\x73\x34\xfa\xdd\xb3\x6b\x69\xb1\x86\x19\x32\xeb\x07\x5c\x63\x1e\xb3\x4a\xec\x79\x15\xcf\xaf\xd4\xf3\x0d\x7d\x8c\x7e\x80\xaf\xca\x0f\x84\x09\x0b\x09\x91\x2d\x3c\x77\xb7\x25\xd3\xf1\xf8\xba\xe3\xe1\xd5\xae\x28\x90\x09\xda\x36\x0b\x35\x5f\xab\x67\x52\xed\xdd\x73\x9f\x5a\xd5\x73\x5b\xa5\xe8\xe8\x88\x45\xf2\x4e\x9d\xc0\x11\x14\x7f\x95\xbc\xba\xa1\x72\x4e\xa7\x33\xcb\x25\xbc\xe3\x6a\x75\xd3\xf8\xa4\x66\x4a\xe3\x87\x82\x69\x6a\x8f\xe1\x97\x52\x71\xad\x76\x2c\x14\xe9\xc5\x26\x75\x17\x12\xca\x22\x7b\x81\x24\x4d\xf9\x16\x8d\x81\xc9\x01\xc6\x6a\xbc\x59\xae\xfb\x42\xb3\xa0\x62\xc5\x5a\xa0\xeb\x99\x24\xd5\x40\xc0\x98\xc8\x4c\x6e\xd1\xb7\x5c\x62\x98\xb2\x60\x30\x51\x4b\x2f\xd5\x94\x14\x8d\x57\xb9\x4b\xc5\xe7\x08\x49\x76\x85\xfb\x44\x64\xc9\x03\x16\xd2\x6b\x84\xd7\x53\x22\x61\x5b\x95\x7b\xc1\x38\x03\x55\xd2\x1b\x0f\x5a\xa0\x06\x5f\xdd\xd5\xad\x6e\x10\x60\x3d\xab\x5b\x00\x7f\x16\x52\x49\x4a\x31\x2d\xec\xc6\x16\x7b\x8d\x66\x76\x40\xe7\x06\xf7\xab\xe1\x17\x17\xa0\xaa\x1d\x37\xe4\x3d\x5c\xdc\xe0\xeb\xba\x22\xae\x73\x03\xa7\xb4\x0e\xe3\xd0\xd4\x2e\x52\x25\x85\xaa\xdf\xd8\x52\xea\xc1\x53\x8e\x6e\x51\x57\x3b\xef\x28\x5f\xc1\x0c\xe9\x80\xca\xe3\xbf\xe3\x83\x61\x1e\x12\x55\xd3\x5b\xd7\x10\x92\x49\xec\xa5\xa6\x9e\x81\x57\xa4\x4b\x94\x6f\x5d\x67\xc3\xef\xb8\xb2\x18\xae\x9f\x70\xa3\x4b\xa8\x6b\x24\x5b\xd8\x1a\x24\x8f\x81\xce\x19\x66\xae\x45\x32\xb2\xad\xfb\xd0\xd7\xad\xca\x4c\x36\xb8\x6d\x6a\x9e\xe5\x15\xca\xa3\x70\xe1\x85\xa9\xf6\x28\x1b\x2e\xf7\xbc\xaa\x04\xe3\xb0\xad\xf8\x5e\x94\x3b\x09\x69\x92\x65\x12\x21\xf4\x86\xb1\x18\x68\xef\xe5\xc2\xa2\x31\x8f\x07\xcb\xc6\x6b\x13\xa0\xdc\x8a\xe6\x18\x34\x2a\xac\x75\xfb\x33\xe9\xd6\x73\x18\x8f\x18\x7a\x75\xdb\x71\xa5\x93\xba\x6e\xcd\x87\x4e\x51\xf9\x0a\xef\x3a\xc4\x6c\xaf\x09\xb8\x77\x85\x01\xa5\x5d\x7b\xd7\x2f\x6a\xc7\xa0\xb0\x6c\x5d\x63\x6f\x3c\x60\x70\xf9\xb7\x5a\x63\xae\x06\x30\x5d\xe9\x5d\xf8\x5f\xa4\xaf\x9d\xfe\x52\x04\xa7\x59\xf5\x3d\x50\x3e\xfc\x3f\x4f\x89\x4b\x8a\xbf\xa8\x21\x3a\x59\x68\x11\xf4\xa3\x42\xc2\x9a\xab\x74\xc3\x59\x93\x16\xb0\x44\x25\x0f\x09\xc6\x35\x9c\xe8\x8d\x8d\x77\x4e\x44\x47\x28\x79\xf9\x82\xc7\xe0\x18\x84\xea\x8d\xa5\x05\x98\xaa\xca\x8e\x0a\x94\xaa\xc2\x3a\x11\xd9\x38\x71\x0f\x28\x72\x20\xa9\xde\x83\x66\x03\x54\xa9\xc8\x34\xb3\x1e\x8f\x57\xb5\xf3\xb7\xb1\x60\xb3\x7c\x8d\x04\xb1\x86\xaf\xf2\xb8\xdc\xc6\x2b\x39\x77\x76\xc5\xfc\xc4\x6c\xdf\x8d\xc1\x7d\x86\xae\x19\x5e\x67\xda\x18\xc2\x9a\x8d\xb7\x5a\x51\x92\x32\x70\x03\xb3\xd3\xbc\xfc\xc7\x1f\xe0\xa6\x97\x1d\x50\x4e\x15\xae\xe2\xbf\xef\x44\xc5\x29\x8d\xa9\xcb\xad\x96\xb7\xd5\x92\xd9\xf9\xb4\xba\xc8\x57\xec\x25\xb4\x42\xa4\x85\xc7\x7b\x5f\x9d\x14\xa8\x5b\xa0\x50\x26\x36\x20\xe7\x6b\xf8\xfa\x29\xa4\x69\x23\xdf\xdd\xec\xfc\xc6\x69\xdf\x51\xcd\xda\xc4\x22\x22\xa5\x23\xed\xf7\x9e\x4d\x77\x6e\x70\x30\xe5\xc7\x1b\xc6\xc2\xee\x34\xc1\xac\x1d\x29\x12\xc6\x24\xd4\x3c\x6f\xdc\x6d\x28\x6a\x7c\x82\xb0\x51\xef\xa5\xad\xe3\xbf\x27\xf2\xe7\xb2\xd9\x1e\xeb\xee\x8f\x39\x3b\x54\x1a\x6a\x83\x9c\xee\x1a\x71\x76\x35\xf2\xe0\x7f\x5c\x83\x13\x9d\xfc\x22\x72\x34\x66\x7c\xe3\xbd\x46\x96\xd5\xca\x7c\xc3\x18\x67\x7d\x26\xed\x09\x1c\x3a\x65\x4f\x24\x6a\xbd\x21\xb7\x91\x38\x22\xa4\x1b\x48\x46\xd4\x3f\x28\xc5\xb4\x70\x62\xe3\xc9\x90\x02\x8c\x05\xfc\x98\xd2\x04\x95\xd9\xd1\xf1\x9e\x26\xac\xcc\x74\xde\x52\x37\x1d\x6a\x9a\xd3\xf5\x69\x92\x0d\xa2\xf7\x6d\xc6\x93\x6a\x12\x7e\x69\x67\x68\x6a\x70\x9e\x0e\x61\xa3\x96\xe1\x24\x47\xe7\x10\x97\x25\x27\x53\xb2\x93\x16\xfc\xf3\xd8\xdb\x02\xbb\x6f\x92\xd2\xe3\xf1\x3d\x5c\x83\xdd\x01\x3b\xd4\xd0\xac\x57\x53\x27\xad\xbe\x32\xb5\x8e\x39\x0b\x7b\xd5\x6a\xb1\x2b\xc6\x52\x1d\x44\xb2\x11\xeb\x4c\xb8\xfa\xaa\x46\x1c\x6a\x7d\x3b\xb5\xe5\xc8\x7a\x1d\xb0\x95\x1f\x7a\x61\x66\x57\xee\x10\xf4\x3f\xb8\xec\xcf\x95\x2b\x4e\xd9\x72\x92\x65\x90\x6e\xb0\x0a\x90\xa7\x68\xf0\x1c\x08\x9d\x42\xd0\x97\xc8\x6e\x1d\xce\xf5\x3d\x6f\xc6\xa8\xff\x36\x6f\x69\x7b\x01\xae\xba\xa3\x4e\xae\xec\x28\xdb\x29\x9d\xba\x7d\x13\xbd\x65\x85\x97\xc3\x84\x11\xd0\xf0\x8a\x60\xf2\x27\x5b\xc8\xf0\xda\x3c\x6f\x18\xab\xcb\x22\xb7\xcf\x62\xc6\xb8\x86\x50\x72\xd5\x1e\xc2\x1b\x41\x97\x42\x4e\xc9\x64\xec\x6c\x1f\x36\xf1\xa8\x44\x12\x77\x8a\x23\xde\xd8\x97\xb3\x47\x6e\x6d\xef\x34\x50\xfc\x1c\x16\x1e\x5e\x40\x30\x2d\x28\xa6\x8b\xae\xb0\xb2\x9e\xfd\x24\x4a\x1a\xa9\xe6\xdd\x45\xd3\xf8\x26\x14\x0a\x66\xb7\xe4\xf5\xc8\xd0\xdb\xda\xd1\x60\x1b\xe8\x53\x69\x0c\x76\x3b\x3b\x66\x97\xa0\x1d\x78\xeb\xac\xae\xe7\x0d\x97\xfe\x87\x87\xad\xf7\xe7\x7b\x65\x6d\xb6\xeb\xeb\xd0\x81\xf9\x94\x68\x36\xeb\x71\xcd\xa3\x73\xdc\x0b\x26\xef\xc5\xfb\x0e\xf3\xcd\xda\xad\x2d\x8f\x0f\x7c\xc4\x11\xff\xf5\x11\x82\x13\x52\x2e\x42\xc8\xd9\x0c\x31\xda\x7e\xbb\x76\x6a\x34\x97\xd9\x5a\x0b\xe1\xac\x9f\xdb\xba\x34\x7e\x36\xe0\x1d\x9a\x3f\x63\x69\x35\xa9\xdb\x2e\xcb\xe8\x32\xdd\xd4\xb7\x05\x5f\xb3\x24\xde\x4a\x05\x5a\x5b\x59\xbd\x4b\x5b\xdd\xf4\x94\xe3\x27\x56\xd0\x9d\xc7\xd9\xa6\xea\x60\xb9\x2f\x97\x1a\xf1\x9f\xaf\xba\xe9\x93\xdd\xa1\xea\x3c\x5c\x67\x51\x6e\x76\xd5\x44\xbb\xda\x5f\xeb\xdd\x26\xac\xd9\x2a\x98\x53\xb4\x5f\x43\xf8\x75\xfc\xbd\x0c\x3d\x9b\x46\xcd\x0b\x0e\x09\x9b\x94\xeb\x1f\xd4\x52\x0e\x61\x2e\x45\xf1\xb8\xcb\x92\xaa\x56\xe7\x1f\xb0\x4d\x64\x9a\x64\x11\x84\xab\x1b\xe9\xe7\x0b\x0e\xb9\xea\x9e\xf4\x47\x32\xeb\xea\x46\x9e\x36\x91\xc3\x9d\x0d\x3b\x0e\x71\xa2\x36\xc7\x68\xc3\xbc\xc5\x6a\xe3\xcf\x9e\x4f\x6e\x03\xac\x7c\x62\xa6\x7b\xc1\xba\xf4\xd6\x62\xea\x61\xde\x3c\x3d\x78\x3f\x7f\xce\xba\xa5\x97\x9f\x4d\xb6\x01\xc3\xc2\xae\xcb\x0c\xa7\x93\x74\xec\x4a\xbf\x87\xa6\xf6\x92\xf5\x0b\x68\x76\x1a\x19\xad\x6e\xa4\x76\x61\x09\xf7\xef\xc7\x90\x42\xda\x64\x8d\x3a\x4f\x40\xc1\x74\x38\x99\x84\x6b\x48\xb6\x5b\x5e\x30\x9c\xa3\x6e\x2e\xf6\x7a\xad\xcd\x51\x07\x49\x4d\x4e\x61\x35\xd9\xa5\x35\x80\x5e\x98\xd1\xc9\x28\xbb\x95\x8f\x2f\x26\xd9\x53\xf2\xd2\x4c\x92\xf1\x62\xbe\xba\x91\x11\xfc\xd7\x35\x7c\x4f\xdb\x1a\x3b\xfd\x32\xce\x24\x17\x94\x97\xbe\x94\x3b\x90\x9b\x72\x97\x31\xd8\x49\x3e\x22\x3b\x88\x42\x2a\x9e\xb0\x18\x56\xca\xf2\x22\xed\x27\x91\x62\x0b\xc5\x2b\xcc\x3c\x77\x32\x79\xe4\xe8\xeb\xce\xc6\x9e\x3d\xb4\x65\x41\x77\x2e\x45\x4f\x31\x30\x00\xc0\x90\x2f\x8a\xb5\x31\xfc\x00\x17\xff\x80\xb7\x3d\xf2\xee\x9a\xfd\xca\xb1\x7b\xcb\x4f\xbb\xc0\xba\x18\x51\x46\x4b\xc7\xa3\xd7\xed\x18\xcc\x0d\x2e\xad\x7a\x5a\x98\xbb\xa8\xe8\xe9\x23\x4f\x5d\x9c\x9c\x4c\x79\xd6\x49\x86\x48\xb3\xe6\x6a\xe7\xd9\xc1\x14\x9e\xee\xdb\xe5\x77\x2b\x17\x3a\xdc\xe8\xef\x6d\xd7\x5b\xc1\x45\x92\xf3\xb1\xde\xd5\xed\x76\x8e\xff\x39\xed\xf5\x3c\x2e\xb7\xb6\x7b\x8b\x98\x73\xc7\x2d\xec\xd9\xc4\xfa\x8c\x69\x3d\xd8\xdc\xdb\x05\x8f\xc6\xe6\xc4\x61\xe7\x91\x39\xbd\xe7\xcd\xac\x5e\xec\xd4\xa6\x6d\x55\x37\x7c\xb3\x4c\x17\xad\x6e\xb7\x58\x9b\x9b\x01\xdb\xd1\x40\x7e\xd5\xee\xb0\x85\x28\x70\xc4\xb2\xa2\x23\xb6\x25\x3c\x72\x3a\x81\x51\xb7\x70\x3a\xe3\x8a\x22\xad\xe8\x8c\x14\x67\x4b\xc6\xeb\xcf\x0b\xea\xea\x04\x76\xa7\x4c\x4b\x38\x1f\x5d\xa9\x7d\x06\xee\xdf\x37\xab\x35\xf3\xbd\x36\x01\xd8\xde\x5a\xc0\x77\x54\xae\x66\xbc\xf0\xfa\x76\xd1\x84\x33\x8b\xdf\x9e\xdb\xd8\x6b\x52\xbb\xf1\x2d\x48\x23\x6b\xed\xc4\xeb\x81\xb2\xba\x75\x4e\xd1\x9e\xd4\xa0\xa7\x5d\x8b\xf6\xf7\xa0\x12\xbb\x0d\x23\xd4\x46\x9f\x08\x15\x7b\x6e\xb0\x0b\x77\x1b\x0e\x92\xa7\x65\xc1\x28\x35\xe5\x09\x59\xd3\x3d\xe4\x02\xa2\xb0\x47\xf0\xea\x9e\xb6\xb3\xb1\x83\x3e\x27\xb9\xa2\x26\x88\xfd\xce\x4c\xd7\x5c\x47\x1f\x1c\x50\xa6\x1b\x9e\x27\x27\x8d\x39\x47\xa1\x0c\x74\x23\x7d\x02\xc3\x6c\xcf\xd7\x79\x33\x2a\x82\x56\xd2\x32\x93\x7c\x12\x2a\xdd\xd0\xaa\xea\x1a\x77\xc4\xaa\x17\x99\x75\x96\x26\x92\x7b\xd6\x79\xed\x66\xe8\xb5\xcd\xdb\x9d\xba\xf6\x3e\x4b\xbf\x3d\xf5\x11\x08\x62\x34\xcb\x3b\x19\xeb\xda\xb5\xe9\x2e\x98\xac\x48\xdb\xa2\xdb\xdb\x72\xfb\x5a\x8d\x51\x2f\x6b\x6d\xe9\x8e\x96\x66\x7e\x1c\xab\x6e\x75\xad\x13\x91\xb9\xe7\x5f\x7a\x38\xd0\x2c\xa2\xaf\xab\xb5\x80\x41\x83\x37\xad\xab\x4b\x2d\x1e\x7f\x59\x4b\x37\xbd\xbb\xb3\xec\xed\x34\x90\x76\xc5\x87\xa2\x7c\x2a\x5a\x1d\x4f\x6d\xde\xaf\x65\xa8\x95\x15\x19\x87\x7f\xc7\x4d\x5e\xd3\x3d\x8d\x32\xea\xf0\xab\x9e\x73\x3e\x62\x8d\x23\x36\x58\x12\x7d\x6e\x6c\x7c\x98\x20\x61\x10\x44\xb1\x2a\x17\x32\x4f\x74\x7f\xb5\x1e\x81\x86\xc3\xd4\x6a\x04\x17\x76\x01\xae\xcf\x2f\xcc\x22\x6a\x1c\x44\x46\xc2\x43\xd0\x36\xf7\x67\x60\xed\x7e\x9b\xef\xed\x5e\x33\x89\x16\xcf\xfd\x66\x95\xc9\x0a\xed\x69\xa6\x1a\x21\xbe\x5d\xf9\xf3\x96\xa7\x0a\x35\x84\xaf\x7d\x7d\x47\x99\xae\x63\x58\x73\x9a\x50\xdb\xd7\xd6\x04\x79\xfc\x8e\xab\xde\x5e\xcd\xde\x3d\x89\x48\xf9\x8b\x9f\xbe\xf4\x0b\x71\x06\xb8\x9c\x10\xec\x25\x09\xe7\x06\x75\x93\x3c\x68\x74\x79\xbb\xfe\x27\x5a\x54\xbd\xa1\xbd\x39\x9d\xf5\xf7\x44\xda\xdd\x6f\xb2\xdc\x3e\xa9\xac\x4c\xf6\x85\x89\x21\xe0\xfc\xa6\xcc\x45\x74\x72\x4e\x5f\x72\x72\x5a\xd0\x57\x85\x7b\x5f\xfc\x44\xa1\x55\x6d\x0c\xc0\xa7\x0d\x00\x3f\x43\x35\xea\x69\xb5\x29\x87\xac\x5f\x16\x96\x8b\x70\xcc\x89\xf9\xc7\xc4\xe4\x83\x46\x9c\x94\x7f\x4c\x48\x3e\x9a\xe5\x4e\xcc\x40\xfa\x61\x78\x49\x0e\xf2\xa5\x00\x38\x10\xd0\x9a\xea\x60\xa4\x35\x3c\x8e\xb2\x29\xd9\x8c\x86\x94\x1e\x91\x8e\x12\x38\xcd\xee\xd2\x89\x3c\x7f\xee\x90\x65\x97\x30\x35\x64\x7d\xca\x5c\xf5\xdf\x8d\x93\xd3\x61\xb0\x15\x08\x3f\x51\x28\x34\x24\x87\xe1\xf0\x0d\xeb\xc7\xe7\x3e\xf2\xa0\xdc\xd7\x18\x9f\x00\xd8\xd3\xc1\xd2\x8b\x7e\xdd\xa0\xf9\xd6\xfb\xf9\x98\x1f\x36\xcd\x71\xad\x6e\x91\x6d\x7a\x32\x4e\x91\x8d\x43\x4d\x89\x93\xde\x74\x63\x91\xd2\xef\xe5\x7e\x54\xa8\xec\x76\x86\x3f\x26\x1c\xd2\x0c\x66\x19\x73\x2f\xb8\xfd\x89\x22\xa1\x2b\xa4\xf3\x93\x03\x1b\xac\x4c\x7c\xa2\xd3\xe8\xa3\x99\xb7\xfd\xc1\xc1\xf0\x41\x88\x13\xb5\xb1\x55\x94\x17\xa0\x6c\xf7\x6c\xf0\x40\x04\x3e\xfd\x3e\x70\x8e\x41\x38\x58\xd5\x0e\x34\x74\x32\x66\x2a\x21\xd3\xaf\x28\x0c\x27\x4f\x24\xe4\x93\xb0\xee\x09\xc5\x1e\xa9\x0e\x60\xfb\x42\x5e\xfd\x64\xa8\x1e\xe2\xce\x3c\xa6\x55\x0d\x07\xd7\x2f\xc1\x5d\x2e\x05\xb5\xc8\x0b\x4d\x48\x3b\xc0\x36\xe3\xeb\xec\xf9\xb6\xfa\x08\xf5\x0f\x09\x87\x41\x42\x3f\x23\xe8\x0d\xdc\x9f\x00\x24\x8d\xb0\x23\x20\xf9\xb3\xed\x12\xb5\xf7\x0c\xec\x9e\xbb\x81\x80\x87\x80\x4f\x62\xf3\xb1\xe2\x4e\x9f\xbe\x71\x83\x14\xf5\x8c\xf0\x39\x37\x3e\x49\xae\x96\xfa\x10\xe2\x39\x7c\xd5\xcc\xd0\x8a\x4b\xd4\x2d\x3a\xb5\x37\x6b\x0f\x06\x45\xa7\x7e\x6e\x3d\xb1\x81\x3e\xc5\x86\xbc\x6d\x43\x2d\x69\x1d\x78\x4c\x9b\x6b\xda\xc6\x2c\x3d\xec\x2a\xdb\x6d\xd7\xa1\xaa\xf1\xfb\x5c\x95\xfa\xf7\x55\xfa\xd7\xfa\x91\xa3\x74\xad\x70\xeb\x62\xda\xa7\x70\x4c\xfa\xa5\x2f\xda\xf6\x6c\x5b\xac\x6e\xa4\xef\x28\xf7\xef\xeb\x7c\xb5\xed\x2e\x8e\x82\x47\xbc\xa5\xc7\x1c\x97\x29\x7a\xc0\x59\x86\x9a\xe1\x17\xb4\xe0\x6a\xd7\x72\x16\x7d\xb8\x12\xec\xe8\xa6\x97\xed\x8e\x39\x75\xd7\x1a\xa0\x3a\x75\xe0\x77\x0b\xea\x86\x0e\x4c\x1f\x19\x3e\x3f\xaf\x95\x37\xd2\xcc\xab\xf3\x5f\xb3\x08\x81\xf9\xcb\x65\xf5\x98\x81\xa4\x69\xc8\x4f\x64\x00\xdb\x86\x3f\x07\x73\xee\x0c\x9f\x95\x01\x46\xfa\x7e\xa7\x8f\x73\x78\x20\xb9\x08\xbb\x13\x59\xa2\x73\xda\xec\x04\x67\x18\xf5\x9d\xc9\x1a\xd6\x50\x96\x37\xc8\x9a\xe8\xd4\xb6\x50\x76\x72\xd1\x0b\x8c\xf9\xe5\x28\x64\xc0\xa0\x17\x9a\x68\x28\x27\x3b\xed\xdf\x63\xe0\x19\x76\xf3\x09\x47\x41\xce\xf7\xf6\xcb\x9d\xdd\x54\x0d\x13\x9d\xfd\x92\xe2\xc4\x9d\xe1\xf3\x87\xfb\xd1\x03\x01\xff\xfe\x70\x8f\xe2\x0e\x17\x8b\x4f\x1b\x91\x6e\x9c\x2d\x4d\x93\x0b\xd7\x9e\xda\x72\x53\xbb\xc5\x79\x89\x55\x1c\x41\xfa\x2b\xc6\x3f\x5f\xc8\x9f\x78\x00\x74\x52\x6e\xec\xec\x3b\x92\x16\x50\xe6\xc1\x4a\x77\x48\xff\xbd\x3b\x8f\xf4\x0b\xe7\xb5\xf6\x19\x7a\xf1\xa3\x0a\x5d\x94\x6b\x42\x09\xf3\xd1\x84\xfa\x99\xc9\xd4\x66\x37\xed\x33\xd3\x5f\xaa\xba\x75\x0e\xa3\x75\xeb\x1d\xaa\xb3\x08\x00\xc3\x87\x99\x86\x20\xd0\xe3\x73\xe3\x75\xed\x47\x41\xa2\x96\xf4\xb3\x43\xe2\x53\xf9\x6c\xdb\xf0\x9f\xbd\xa6\xed\x9a\xd8\x39\xab\xd5\x7c\xfc\x57\x00\x00\x00\xff\xff\x4f\x05\xae\x3b\x4e\x50\x00\x00") +var _templateBuilderMutationTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\xdd\x93\xdb\x36\x92\x7f\x16\xff\x8a\x0e\xcb\xc9\x8a\x73\x0a\x27\xd9\xb7\x73\x4e\x0f\x5e\x4f\x92\x55\xd5\x9d\xe7\x6a\x3d\xb9\x97\x29\xd7\x86\x26\xa0\x11\xce\xfc\x50\x08\x48\x33\x53\x8a\xfe\xf7\xad\x6e\x00\x24\xc0\x2f\x51\xf2\xc7\xda\x0f\x1e\x89\x1f\x40\xa3\xfb\xd7\xbf\xee\x46\x43\x87\xc3\xf5\x55\xf0\xba\xdc\x3e\x57\xe2\x61\xa3\xe0\xaf\x3f\xfc\xf8\x9f\xdf\x6f\x2b\x2e\x79\xa1\xe0\x97\x24\xe5\xef\xcb\xf2\x03\xac\x8a\x34\x86\x57\x59\x06\xf4\x90\x04\xbc\x5f\xed\x39\x8b\x83\xbb\x8d\x90\x20\xcb\x5d\x95\x72\x48\x4b\xc6\x41\x48\xc8\x44\xca\x0b\xc9\x19\xec\x0a\xc6\x2b\x50\x1b\x0e\xaf\xb6\x49\xba\xe1\xf0\xd7\xf8\x07\x7b\x17\xd6\xe5\xae\x60\x81\x28\xe8\xfe\x7f\xaf\x5e\xff\xfc\xe6\xed\xcf\xb0\x16\x19\x07\x73\xad\x2a\x4b\x05\x4c\x54\x3c\x55\x65\xf5\x0c\xe5\x1a\x94\x33\x99\xaa\x38\x8f\x83\xab\xeb\xe3\x31\x08\x0e\x07\x60\x7c\x2d\x0a\x0e\x61\xbe\x53\x89\x12\x65\x11\x82\xb9\xf1\x62\xfb\xe1\x01\x5e\x2e\xe1\x7d\x22\x39\xbc\x88\x5f\x97\xc5\x5a\x3c\xc4\xff\x9b\xa4\x1f\x92\x07\x8e\x0f\x1d\x0e\xa0\x78\xbe\xcd\x12\xc5\x21\xdc\xf0\x84\xf1\x2a\x84\x17\xf4\xba\xc8\xb7\x65\xa5\x60\x1e\xcc\xc2\xb4\x2c\x14\x7f\x52\x61\x30\x0b\xd7\x39\xfd\x91\xcf\x45\x1a\x06\xc1\xec\x70\xf8\x1e\xaa\xa4\x78\xe0\xf0\xa2\xc0\x89\x5e\xc4\x6f\x4a\xc6\x25\x0e\x30\x9b\x85\x28\x41\x77\xd2\x6b\xbc\x5c\x38\x17\x42\x3d\x0e\x2f\x18\x4d\x3c\x0b\x79\xa1\x1e\xca\x58\x94\xd7\xbc\x50\x61\x10\x05\x41\x5a\x16\x92\x44\xb9\xbe\x86\xdb\x2d\xaf\x68\x95\xa0\x9e\xb7\x5c\xc6\xc1\xec\x76\xfb\xba\xe2\xb8\x02\x00\x58\x02\x2f\x54\x6c\xaf\xe0\xbd\x1b\x9e\x71\xff\x9e\xbe\xd2\xdc\xbb\x2d\x78\xeb\xde\x6d\x41\xb7\x7f\xdb\xb2\xd6\xb0\xfa\x4a\x73\xcf\x7d\xb5\xbe\x12\x90\x9c\xa8\x88\x5a\xc4\x51\x3d\xdd\x3d\x6f\xb9\xd6\xc9\x9b\x24\x47\x85\xc0\x12\x42\xef\x82\xaf\xa1\x88\x6c\x3b\x30\x1c\x99\xdd\x02\x81\xee\x15\xf1\xff\x98\xaf\x66\xb4\xe0\xfa\x1a\xbc\xa7\x8e\x47\xa8\xb8\xc1\xbd\x84\xa4\x80\xb2\xd1\xf1\x26\x51\x40\x0f\x72\x49\xc0\xf4\x05\x2d\x68\x5a\x83\xd9\x87\x2a\xd9\x6e\xe2\x00\xd7\xdc\x19\x5f\xaa\x6a\x97\x2a\x38\x04\xb3\x94\xf0\x10\xcc\xca\x2d\xdc\x6e\x83\x99\x7a\xde\xe2\x4d\x51\x3c\xe0\x1a\x71\xec\xd5\x4d\xfc\xb7\x9d\xc8\x18\xaf\x7e\x11\x3c\xc3\x15\xc3\x55\x7d\x07\x75\x45\x5a\x73\x34\xba\x36\xcb\xa4\xc7\x8d\x4e\xf1\x85\x75\xff\x38\xeb\x66\x10\x1a\x45\xac\x21\x29\x98\xbd\x1e\xbf\xd9\xe5\xbc\x12\x29\x7e\x7f\x5d\x16\x7b\x5e\x29\xce\xee\xca\xbf\x25\x52\xa4\xfa\x9d\x59\xc2\xd8\x19\xc3\x1b\xa3\x79\x9f\xd3\x8c\x27\x15\x67\x46\xe0\x3c\xd9\xde\x6b\x15\xbc\xd3\x6a\x3a\xf8\xeb\xe3\x66\x7d\x3f\xb3\x07\x2e\x3d\xb9\x5f\xf0\xf8\xb7\x42\xfc\xb1\x33\xd3\xd1\xaa\x79\xbf\x58\x5c\xaf\xce\x55\xa1\x16\x29\x93\xe3\x6f\xa3\x74\xbd\x03\x38\xc2\xce\x66\x15\xcf\xcb\x3d\x67\x1f\x31\x84\xab\x1f\xab\xa0\xfe\xe1\xde\x97\x65\xe6\xeb\x93\x95\x05\x37\x97\xcb\x8c\xfd\x5f\x92\xed\x38\xac\x77\x45\x3a\x37\xcc\x85\x96\xc4\xbf\x11\xcc\xaf\x3c\x00\x2f\x80\x57\x55\x59\x45\xc1\x6c\x5b\x71\x26\x52\x82\xf9\xfd\xbb\xfa\x4b\xec\x3d\x1d\x1c\x83\x60\x9f\x54\xf0\x4f\xf2\x78\xeb\x55\xb0\x34\xa3\x3a\x78\x8f\xe6\x85\xc8\x22\xdf\x19\x6f\xb7\xd6\x25\xb7\x95\x28\x14\xcc\xd3\x24\xe7\x99\x1d\x3e\x82\x50\x3f\x10\xf6\x78\xa8\x79\xf5\x78\x84\x24\xcb\xca\x47\x84\x4c\x91\x3c\xf0\x1c\xe3\x14\x85\x06\x0e\xf5\xe4\xda\xbf\x76\xc6\x7f\x77\x52\x14\x0f\xa4\x0b\xfc\x9a\x64\x50\xd2\x50\xb2\xc7\x4d\x9b\x49\x48\x75\x9d\x25\x05\x28\x55\xc1\x1f\xdb\xae\x9d\x12\xd5\x4a\xbc\xd5\x48\xb1\x2e\xab\x1e\xba\xe0\x85\x12\xea\x39\x0e\x70\x82\x9e\xa1\xe6\xa9\x91\x7e\x01\xc4\x0e\xf8\x47\x49\x88\xe3\xb8\x57\xce\x08\xda\x32\x22\xbf\xe4\xa8\xe1\xef\x5a\x37\x0e\x88\x29\x1a\xfa\x25\x98\x7f\xe9\x22\x98\xcd\xca\x6d\xfd\x1d\xff\x95\x5b\xbc\xa8\x9e\xbd\xab\x1d\x7a\x5e\x34\x00\xd5\x1e\xfc\x12\xf2\xe4\x03\x9f\xf7\xf8\x71\xb4\x08\x66\xc7\x60\x86\xda\xf8\x27\xad\x06\x85\xd3\x6e\x4d\x4b\x3b\x90\x0c\x6a\x9e\x47\xf4\x5c\xc5\xd5\xae\x2a\x20\x0f\x0c\x8f\x9b\x17\x34\x5e\xc2\x47\xa1\x36\x61\x2d\x47\xb8\xba\x71\xa1\x82\x8f\x22\xcf\x72\xa5\x79\x7a\x75\x03\x6b\x72\x98\x16\x3e\x8c\xf2\x9b\x57\xe6\x82\x41\x9b\x5e\xa3\x01\x60\x1c\x6a\x11\x09\x22\x79\xc7\x00\x11\xad\x08\x7d\x64\x8e\xac\xc0\xab\x4a\x3b\x18\x7e\x29\x8b\x94\x03\x26\x0e\xf1\x6d\x91\x72\xbc\xb2\x27\x47\xf5\x3d\x32\x98\xcd\xa2\x60\x36\xcb\xe3\xda\x91\x97\xc6\x95\xd5\x13\x4c\x75\x67\x92\x82\x26\x8c\x6f\xca\x39\xbd\x6e\xae\xcd\xc4\x1a\xf2\x98\xf8\x42\x7f\x27\x19\x97\xb0\xce\x55\xfc\x33\xbe\xbb\x9e\x87\x7f\xec\x78\xf5\x8c\x6e\x53\x66\x0c\x48\x46\x09\xdb\x52\xaa\x06\xdd\x42\x42\x51\x2a\xed\x8c\x9c\x85\x11\x8d\x74\xd4\x5c\x6a\x86\xa5\xf7\x48\x1e\x58\x42\x1e\xbf\xce\x04\x2f\xd4\x3c\xf2\x09\x25\xfe\x95\x2b\x5c\xd8\x02\x04\x33\x83\xe0\xff\xc7\x48\x53\x2a\x69\xba\x19\x28\xd0\xb7\xf3\x78\x30\x4e\x2e\xe1\x3b\xc1\x10\x49\x0e\x7e\x06\xe0\x33\x8c\x1c\x5c\xb5\xef\xb6\x27\x21\x84\x69\x40\xcb\x8e\x1f\x09\xa1\x1e\xfb\x9f\x65\x7b\x33\x07\x0a\xb6\x80\x42\x64\x93\x74\x87\x4f\xc7\xab\x1b\xa3\xc0\xeb\x6b\xd0\x56\x03\x3d\x98\x84\x84\x38\xee\x77\x24\x7f\x7d\xe7\x77\x58\x57\x65\xee\x2b\x07\x56\x2d\x42\x7e\x4c\x24\x8e\xc5\x9f\x78\xba\x53\x9c\x61\xb6\x94\x80\xaa\x92\x42\x26\x44\xca\x30\xc7\x01\xef\x9e\xa2\x85\x7f\x3d\xc9\x20\xd5\xf3\x0b\x69\x44\xc0\xa2\x83\x74\x3f\xcf\xdb\x19\x56\x04\x16\x62\x70\x65\xc4\xc6\x64\x4b\x7f\x42\x46\xd4\x17\x0f\x96\x05\xf3\x58\x7f\x3a\xda\x87\x62\x51\x08\x35\x8f\x6a\xf3\xe8\xab\x46\x11\x77\x4f\x8d\x12\x0a\xad\x81\xbb\xa7\xdf\x89\xe5\xad\x0c\x52\xe7\x8a\x8f\xbc\xe2\xde\x5a\x9d\x15\xc9\x9f\x70\x2c\xa1\xdc\xb1\xc8\x68\x50\xaa\x0d\xaf\x1e\x85\xe4\x23\xeb\xbb\x7b\x9a\xa3\xd1\xef\x9e\x5c\x4b\x8b\x35\xcc\x90\x59\x3f\xe0\x1a\xf3\x98\x55\x62\xcf\xab\x78\x7e\xa5\x9e\x6e\xe8\x63\xf4\x13\x7c\x53\x7e\x20\x4c\x58\x48\x88\x6c\xe1\xb9\xbb\xad\x93\x8e\xc7\x97\x1d\x0f\xaf\x76\x45\x81\x4c\xd0\xb6\x59\xa8\xf9\x5a\x3d\x91\x6a\xef\x9e\xfa\xd4\xaa\x9e\xda\x2a\x45\x47\x47\x2c\x92\x77\xea\x04\x8e\xa0\xf8\x9b\xe4\xd5\x0d\xd5\x70\x3a\x9d\xb9\xbe\x86\xb7\x5c\xad\x6e\x1a\x9f\xd4\x4c\x69\xfc\x50\x30\x4d\xed\x31\xbc\x29\x15\xd7\x6a\xc7\xea\x90\x5e\x6c\x52\x77\x21\xa1\x2c\xb2\x67\x48\xd2\x94\x6f\xd1\x18\x98\x1c\x60\xac\xc6\x9b\xe5\xba\x2f\x34\x0b\x2a\x56\xac\x05\xba\x9e\x49\x52\x0d\x04\x8c\x89\xcc\xe4\x56\x7a\xd7\xd7\x18\xa6\x2c\x18\x4c\xd4\xd2\x4b\x35\x25\x45\xe3\x55\xee\x52\xf1\x39\x42\x92\x5d\xe1\x3e\x11\x59\xf2\x1e\xab\xe7\x35\xc2\xeb\x31\x91\xb0\xad\xca\xbd\x60\x9c\x81\x2a\xe9\x8d\xf7\x5a\xa0\x06\x5f\xdd\xd5\xad\x6e\x10\x60\x3d\xab\x5b\x00\x7f\x12\x52\x49\x4a\x31\x2d\xec\xc6\x16\xbb\x44\x33\x3b\xa0\x73\x83\xfb\xd5\xf0\x8b\x0b\x50\xd5\x8e\x1b\xf2\x1e\x2e\x6e\xf0\x75\x5d\x11\xd7\xb9\x81\x53\x4f\x87\x71\x68\x6a\x17\xa9\x92\x42\xd5\x6f\x6c\x29\xf5\xe0\x29\x47\xb7\xa8\xab\x9d\xb7\x94\xaf\x60\x86\x74\x40\xe5\xf1\x3f\xf0\xc1\x30\x0f\x89\xaa\xe9\xad\x25\x84\x64\x12\x7b\xa9\xa9\x67\xe0\x05\xe9\x12\xe5\x5b\xd7\xd9\xf0\x5b\xae\x2c\x86\xeb\x27\xdc\xe8\x12\xea\x1a\xc9\x16\xb6\x06\xc9\x63\xa0\x73\x86\x99\x6b\x91\x8c\x6c\xeb\x3e\xf4\x75\xab\x32\x93\x0d\x6e\x9b\x9a\xe7\xfa\x0a\xe5\x51\xb8\xf0\xc2\x54\x7b\x94\x0d\x97\x7b\x5e\x55\x82\x71\xd8\x56\x7c\x2f\xca\x9d\x84\x34\xc9\x32\x89\x10\x7a\xc5\x58\x0c\xb4\xe1\x72\x61\xd1\x98\xc7\x83\x65\xe3\xd2\x04\x28\xb7\xa2\x39\x06\x8d\x0a\x6b\xdd\xfe\x4a\xba\xf5\x1c\xc6\x23\x86\x5e\xdd\x76\x5c\xe9\xa4\xae\x5b\xf3\xa1\x53\x54\xbe\xc2\xbb\x0e\x31\xdb\x6b\x02\xee\x5d\x61\x40\x69\xd7\xde\xf5\x8b\xda\x31\x28\x2c\x5b\xd7\xd8\x1b\x0f\x18\x5c\xfe\xad\xd6\x98\xab\x01\x4c\x57\x7a\x17\xfe\x17\xe9\x6b\xa7\xbf\x14\xc1\x69\x56\x7d\x0f\x94\xef\xff\x9f\xa7\xc4\x25\xc5\x5f\xd4\x10\x9d\x2c\xb4\x08\xfa\x51\x21\x61\xcd\x55\xba\xe1\xac\x49\x0b\x58\xa2\x92\xf7\x09\xc6\x35\x9c\xe8\x95\x8d\x77\x4e\x44\x47\x28\x79\xf9\x82\xc7\xe0\x18\x84\xea\x8d\xa5\x05\x98\xaa\xca\x8e\x0a\x94\xaa\xc2\x3a\x11\xd9\x38\x71\x0f\x28\x72\x20\xa9\xde\x83\x66\x03\x54\xa9\xc8\x34\xb3\x1e\x8f\x57\xb5\xf3\xb7\xb1\x60\xb3\x7c\x8d\x04\xb1\x86\x6f\xf2\xb8\xdc\xc6\x2b\x39\x77\x76\xc5\xfc\xc4\x6c\xdf\x8d\xc1\x7d\x86\xae\x19\x5e\x67\xda\x18\xc2\x9a\x8d\xb7\x5a\x51\x92\x32\x70\x03\xb3\xd3\xbc\xfc\xe7\x9f\xe0\xa6\x97\x1d\x50\x4e\x15\xae\xe2\x7f\xec\x44\xc5\x29\x8d\xa9\xcb\xad\x96\xb7\xd5\x92\xd9\xf9\xb4\xba\xc8\x57\xec\x25\xb4\x42\xa4\x85\xc7\x7b\xdf\x9c\x14\xa8\x5b\xa0\x50\x26\x36\x20\xe7\x4b\xf8\xf6\x31\xa4\x69\x23\xdf\xdd\xec\xfc\xc6\x69\xdf\x52\xcd\xda\xc4\x22\x22\xa5\x23\x6d\xf2\x9e\x4d\x77\x6e\x70\x30\xe5\xc7\x2b\xc6\xc2\xee\x34\xc1\xac\x1d\x29\x12\xc6\x24\xd4\x3c\x6f\xdc\x6d\x28\x6a\x7c\x82\xb0\x51\xef\xa5\xad\xe3\xbf\x27\xf2\xd7\xb2\xd9\x1e\xeb\xee\x8f\x39\x3b\x54\x1a\x6a\x83\x9c\xee\x1a\x71\x76\x35\xf2\xe0\x7f\x2c\xc1\x89\x4e\x7e\x11\x39\x1a\x33\xbe\xf3\x5e\x23\xcb\x6a\x65\xbe\x62\x8c\xb3\x3e\x93\xf6\x04\x0e\x9d\xb2\x27\x12\xb5\xde\x90\xdb\x48\x1c\x11\xd2\x0d\x24\x23\xea\x1f\x94\x62\x5a\x38\xb1\xf1\x64\x48\x01\xc6\x02\x7e\x4c\x69\x82\xca\xec\xe8\x78\x4f\x13\x56\x66\x3a\x6f\xa9\x3b\x0d\x35\xcd\xe9\xfa\x34\xc9\x06\xd1\xfb\x3a\xe3\x49\x35\x09\xbf\xb4\x33\x34\x35\x38\x4f\x87\xb0\x51\xcb\x70\x92\xa3\x73\x88\xcb\x92\x93\x29\xd9\x49\x0b\xfe\x79\xec\x6d\x81\xdd\x37\x49\xe9\xf1\xf8\x0e\x96\x60\x77\xc0\x0e\x35\x34\xeb\xd5\xd4\x49\xab\xaf\x4c\xad\x63\xce\xc2\x5e\xb5\x5a\xec\x8a\xb1\x54\x07\x91\x6c\xc4\x3a\x13\xae\xbe\xaa\x11\x87\x5a\xdf\x4e\x6d\x39\xb2\x5e\x07\x6c\xe5\x87\x5e\x98\xd9\x95\x3b\x04\xfd\x0f\x2e\xfb\x73\xe5\x8a\x53\xb6\x9c\x64\x19\xa4\x1b\xac\x02\xe4\x29\x1a\x3c\x07\x42\xa7\x10\xf4\x25\xb2\x5b\x87\x73\x7d\xcf\x9b\x31\xea\xbf\xcd\x5b\xda\x5e\x80\xab\xee\xa8\x93\x2b\x3b\xca\x76\x4a\xa7\x6e\xdf\x44\x6f\x59\xe1\xe5\x30\x61\x04\x34\xbc\x22\x98\xfc\xc5\x16\x32\xbc\x36\xcf\x2b\xc6\xea\xb2\xc8\xed\xb3\x98\x31\x96\x10\x4a\xae\xda\x43\x78\x23\xe8\x52\xc8\x29\x99\x8c\x9d\xed\xc3\x26\x1e\x95\x48\xe2\x4e\x71\xc4\x1b\xfb\x72\xf6\xc0\xad\xed\x9d\x06\x8a\x9f\xc3\xc2\xfb\x67\x10\x4c\x0b\x8a\xe9\xa2\x2b\xac\xac\x67\x3f\x89\x92\x46\xaa\x79\x77\xd1\x34\xbe\x09\x85\x82\xd9\x2d\x79\x3d\x32\xf4\xb6\x76\x34\xd8\x06\xfa\x54\x1a\x83\xdd\xce\x8e\xd9\x25\x68\x07\xde\x3a\xab\xeb\x79\xc3\xa5\xff\xe1\x61\xeb\xfd\xf9\x5e\x59\x9b\xed\xfa\x3a\x74\x60\x3e\x25\x9a\xcd\x7a\x5c\xf3\xe8\x1c\xf7\x82\xc9\x7b\xf1\xae\xc3\x7c\xb3\x76\x6b\xcb\xe3\x03\x1f\x71\xc4\x7f\x7d\x84\xe0\x84\x94\x8b\x10\x72\x36\x43\x8c\xb6\xdf\x96\x4e\x8d\xe6\x32\x5b\x6b\x21\x9c\xf5\x73\x5b\x97\xc6\xcf\x06\xbc\x43\xf3\x67\x2c\xad\x26\x75\xdb\x65\x19\x5d\xa6\x9b\xfa\xb6\xe0\x6b\x96\xc4\x5b\xa9\x40\x6b\x2b\xab\x77\x69\xab\x9b\x9e\x72\xfc\xc4\x0a\xba\xf3\x38\xdb\x54\x1d\x2c\xf7\xe5\x52\x23\xfe\xf3\x4d\x37\x7d\xb2\x3b\x54\x9d\x87\xeb\x2c\xca\xcd\xae\x9a\x68\x57\xfb\x6b\xbd\xdb\x84\x35\x5b\x05\x73\x8a\xf6\x6b\x08\xbf\x8d\x7f\x94\xa1\x67\xd3\xa8\x79\xc1\x21\x61\x93\x72\xfd\x83\x5a\xca\x21\xcc\xa5\x28\x1e\x76\x59\x52\xd5\xea\xfc\x13\xb6\x89\x4c\x93\x2c\x82\x70\x75\x23\xfd\x7c\xc1\x21\x57\xdd\x93\xfe\x48\x66\x5d\xdd\xc8\xd3\x26\x72\xb8\xb3\x61\xc7\x21\x4e\xd4\xe6\x18\x6d\x98\xb7\x58\x6d\xfc\xd9\xf3\xc9\x6d\x80\x95\x4f\xcc\x74\x2f\x58\x97\xde\x5a\x4c\x3d\xcc\x9b\xa7\x07\xef\xe7\xcf\x59\xb7\xf4\xf2\xb3\xc9\x36\x60\x58\xd8\x75\x99\xe1\x74\x92\xce\x5a\xe9\xf7\xd0\xd4\x5e\xb2\x7e\x01\xcd\x4e\x23\xa3\xd5\x8d\xd4\x2e\x2c\xe1\xfe\xdd\x18\x52\x48\x9b\xac\x51\xe7\x09\x28\x98\x0e\x27\x93\xb0\x84\x64\xbb\xe5\x05\xc3\x39\xea\xe6\x62\xaf\xd7\xda\x1c\x75\x90\xd4\xe4\x14\x56\x93\x5d\x5a\x03\xe8\x85\x19\x9d\x8c\xb2\x5b\xf9\xf8\x62\x92\x3d\x26\xcf\xcd\x24\x19\x2f\xe6\xab\x1b\x19\xc1\x7f\x2d\xe1\x47\xda\xd6\xd8\xe9\x97\x71\x26\xb9\xa0\xbc\xf4\xb9\xdc\x81\xdc\x94\xbb\x8c\xc1\x4e\xf2\x11\xd9\x41\x14\x52\xf1\x84\xc5\xb0\x52\x96\x17\x69\x3f\x89\x14\x5b\x28\x5e\x61\xe6\xb9\x93\xc9\x03\x47\x5f\x77\x36\xf6\xec\xa1\x2d\x0b\xba\x73\x29\x7a\x8a\x81\x01\x00\x86\x7c\x51\xac\x8d\xe1\x07\xb8\xf8\x27\xbc\xed\x91\x77\xd7\xec\x57\x8e\xdd\x5b\x7e\xda\x05\xd6\xc5\x88\x32\x5a\x3a\x1e\xbd\x6e\xc7\x60\x6e\x70\x69\xd5\xd3\xc2\xdc\x45\x45\x4f\x1f\x79\xea\xe2\xe4\x64\xca\xb3\x4e\x32\x44\x9a\x35\x57\x3b\xcf\x0e\xa6\xf0\x74\xdf\x2e\xbf\x5b\xb9\xd0\xe1\x46\x7f\x6f\xbb\xde\x0a\x2e\x92\x9c\x8f\xf5\xae\x6e\xb7\x73\xfc\xcf\x69\xaf\xe7\x71\xb9\xb5\xdd\x5b\xc4\x9c\x3b\x6e\x61\xcf\x26\xd6\x07\x4b\xeb\xc1\xe6\xde\x2e\x78\x34\x36\x27\x0e\x3b\x8f\xcc\xe9\x3d\x6f\x66\xf5\x6c\xa7\x36\x6d\xab\xba\xe1\x9b\x65\xba\x68\x75\xbb\xc5\xda\xdc\x0c\xd8\x8e\x06\xf2\xab\x76\x87\x2d\x44\x81\x23\x96\x15\x9d\xab\x2d\xe1\x81\xd3\x09\x8c\xba\x85\xd3\x19\x57\x14\x69\x45\x67\xa4\x38\xbb\x66\xbc\xfe\xbc\xa0\xae\x4e\x60\x77\xca\xb4\x84\xf3\xd1\x95\xda\x67\xe0\xfe\x5d\xb3\x5a\x33\xdf\x4b\x13\x80\xed\xad\x05\xfc\x40\xe5\x6a\xc6\x0b\xaf\x6f\x17\x4d\x38\xb3\xf8\xfd\xb9\x8d\xbd\x26\xb5\x1b\xdf\x82\x34\xb2\xd6\x4e\xbc\x1e\x28\xab\x5b\xe7\x14\xed\x49\x0d\x7a\xda\xb5\x68\x7f\x0f\x2a\xb1\xdb\x30\x42\x6d\xf4\x89\x50\xb1\xe7\x06\xbb\x70\xb7\xe1\x20\x79\x5a\x16\x8c\x52\x53\x9e\x90\x35\xdd\x43\x2e\x20\x0a\x7b\x04\xaf\xee\x69\x3b\x1b\x3b\xe8\x73\x92\x2b\x6a\x82\xd8\xef\xcc\x74\xcd\x75\xf4\xc1\x01\x65\xba\xe1\x79\x72\xd2\x98\x73\x14\xca\x40\x37\xd2\x27\x30\xcc\xf6\x7c\x9d\x37\xa3\x22\x68\x25\x2d\x33\xc9\x47\xa1\xd2\x0d\xad\xaa\xae\x71\x47\xac\x7a\x91\x59\x67\x69\x22\xb9\x67\x9d\x97\x6e\x86\x5e\xdb\xbc\xdd\xa9\x6b\xef\xb3\xf4\xdb\x53\x1f\x81\x20\x46\xb3\xbc\x93\xb1\xae\x5d\x9b\xee\x82\xc9\x8a\xb4\x2d\xba\xbd\x2d\xb7\xaf\xd5\x18\xf5\xb2\xd6\x96\xee\x68\x69\xe6\xc7\xb1\xea\x56\xd7\x3a\x11\x99\x7b\xfe\xa5\x87\x03\xcd\x22\xfa\xba\x5a\x0b\x18\x34\x78\xd3\xba\xba\xd4\xe2\xf1\x97\xb5\x74\xd3\xbb\x3b\xcb\xde\x4e\x03\x69\x57\x7c\x28\xca\xc7\xa2\xd5\xf1\xd4\xe6\xfd\x56\x86\x5a\x59\x91\x71\xf8\xb7\xdc\xe4\x35\xdd\xd3\x28\xa3\x0e\xbf\xea\x39\xe7\x23\xd6\x38\x62\x83\x25\xd1\xe7\xc6\xc6\x87\x09\x12\x06\x41\x14\xab\x72\x21\xf3\x44\xf7\x57\xeb\x11\x68\x38\x4c\xad\x46\x70\x61\x17\xe0\xfa\xfc\xc2\x2c\xa2\xc6\x41\x64\x24\x3c\x04\x6d\x73\x7f\x06\xd6\xee\xb7\xf9\xde\xee\x35\x93\x68\xf1\xdc\x6f\x56\x99\xac\xd0\x9e\x66\xaa\x11\xe2\xdb\x95\x3f\x6d\x79\xaa\x50\x43\xf8\xda\xb7\x77\x94\xe9\x3a\x86\x35\xa7\x09\xb5\x7d\x6d\x4d\x90\xc7\x6f\xb9\xea\xed\xd5\xec\xdd\x93\x88\x94\xbf\xf8\xe9\x4b\xbf\x10\x67\x80\xcb\x09\xc1\x5e\x92\x70\x6e\x50\x37\xc9\x83\x46\x97\xb7\xeb\x7f\xa2\x45\xd5\x1b\xda\x9b\xd3\x59\x7f\x4f\xa4\xdd\xfd\x26\xcb\xed\x93\xca\xca\x64\x5f\x98\x18\x02\xce\x6f\xca\x5c\x44\x27\xe7\xf4\x25\x27\xa7\x05\x7d\x55\xb8\xf7\xc5\x4f\x14\x5a\xd5\xc6\x00\x7c\xda\x00\xf0\x33\x54\xa3\x9e\x56\x9b\x72\xc8\xfa\x65\x61\xb9\x08\xc7\x9c\x98\x7f\x4c\x4c\x3e\x68\xc4\x49\xf9\xc7\x84\xe4\xa3\x59\xee\xc4\x0c\xa4\x1f\x86\x97\xe4\x20\x5f\x0a\x80\x03\x01\xad\xa9\x0e\x46\x5a\xc3\xe3\x28\x9b\x92\xcd\x68\x48\xe9\x11\xe9\x28\x81\xd3\xec\x2e\x9d\xc8\xf3\x75\x87\x2c\xbb\x84\xa9\x21\xeb\x53\xe6\xaa\xff\x6e\x9c\x9c\x0e\x83\xad\x40\xf8\x89\x42\xa1\x21\x39\x0c\x87\xaf\x58\x3f\x3e\xf7\x91\x07\xe5\xbe\xc6\xf8\x04\xc0\x9e\x0e\x96\x5e\xf4\xeb\x06\xcd\xd7\xde\xcf\xc7\xfc\xb0\x69\x8e\x6b\x75\x8b\x6c\xd3\x93\x71\x8a\x6c\x1c\x6a\x4a\x9c\xf4\xa6\x1b\x8b\x94\x7e\x2f\xf7\xa3\x42\x65\xb7\x33\xfc\x31\xe1\x90\x66\x30\xcb\x98\x7b\xc1\xed\x2b\x8a\x84\xae\x90\xce\x4f\x0e\x6c\xb0\x32\xf1\x89\x4e\xa3\x8f\x66\xde\xf6\x07\x07\xc3\x07\x21\x4e\xd4\xc6\x56\x51\x5e\x80\xb2\xdd\xb3\xc1\x03\x11\xf8\xf4\xbb\xc0\x39\x06\xe1\x60\x55\x3b\xd0\xd0\xc9\x98\xa9\x84\x4c\xbf\xa2\x30\x9c\x3c\x91\x90\x4f\xc2\xba\x27\x14\x7b\xa4\x3a\x80\xed\x0b\x79\xf5\x93\xa1\x7a\x88\x3b\xf3\x98\x56\x35\x1c\x5c\xbf\x04\x77\xb9\x14\xd4\x22\x2f\x34\x21\xed\x00\xdb\x8c\xaf\xb3\xe7\xdb\xea\x23\xd4\x3f\x24\x1c\x06\x09\xfd\x8c\xa0\x37\x70\x7f\x02\x90\x34\xc2\x8e\x80\xe4\x6b\xdb\x25\x6a\xef\x19\xd8\x3d\x77\x03\x01\x0f\x01\x9f\xc4\xe6\x63\xc5\x9d\x3e\x7d\xe3\x06\x29\xea\x19\xe1\x73\x6e\x7c\x92\x5c\x5d\xeb\x43\x88\xe7\xf0\x55\x33\x43\x2b\x2e\x51\xb7\xe8\xd4\xde\xac\x3d\x18\x14\x9d\xfa\xb9\xf5\xc4\x06\xfa\x14\x1b\xf2\xb6\x0d\xb5\xa4\x75\xe0\x31\x6d\xae\x69\x1b\xb3\xf4\xb0\xab\x6c\xb7\x5d\x87\xaa\xc6\xef\x73\x55\xea\xdf\x57\xe9\x5f\xeb\x47\x8e\xd2\xb5\xc2\xad\x8b\x69\x9f\xc2\x31\xe9\x97\xbe\x68\xdb\xb3\x6d\xb1\xba\x91\xbe\xa3\xdc\xbf\xab\xf3\xd5\xb6\xbb\x38\x0a\x1e\xf1\x96\x1e\x73\x5c\xa6\xe8\x01\x67\x19\x6a\x86\x5f\xd0\x82\xab\x5d\xcb\x59\xf4\xe1\x4a\xb0\xa3\x9b\x5e\xb6\x3b\xe6\xd4\x5d\x6b\x80\xea\xd4\x81\x3f\x2c\xa8\x1b\x3a\x30\x7d\x64\xf8\xfc\xbc\x56\xde\x48\x33\xaf\xce\x7f\xcd\x22\x04\xe6\x2f\x97\xd5\x63\x06\x92\xa6\x21\x3f\x91\x01\x6c\x1b\xfe\x1c\xcc\xb9\x33\x7c\x56\x06\x18\xe9\xfb\x9d\x3e\xce\xe1\x81\xe4\x22\xec\x4e\x64\x89\xce\x69\xb3\x13\x9c\x61\xd4\x77\x26\x6b\x58\x43\x59\xde\x20\x6b\xa2\x53\xdb\x42\xd9\xc9\x45\x2f\x30\xe6\x97\xa3\x90\x01\x83\x5e\x68\xa2\xa1\x9c\xec\xb4\x7f\x8f\x81\x67\xd8\xcd\x27\x1c\x05\x39\xdf\xdb\x2f\x77\x76\x53\x35\x4c\x74\xf6\x4b\x8a\x13\x77\x86\xcf\x1f\xee\x47\x0f\x04\xfc\xfb\xc3\x3d\x8a\x3b\x5c\x2c\x3e\x6e\x44\xba\x71\xb6\x34\x4d\x2e\x5c\x7b\x6a\xcb\x4d\xed\x16\xe7\x25\x56\x71\x04\xe9\xaf\x18\xbf\xbe\x90\x3f\xf1\x00\xe8\xa4\xdc\xd8\xd9\x77\x24\x2d\xa0\xcc\x83\x95\xee\x90\xfe\x7b\x77\x1e\xe9\x17\xce\x6b\xed\x33\xf4\xe2\x47\x15\xba\x28\xd7\x84\x12\xe6\xa3\x09\xf5\x33\x93\xa9\xcd\x6e\xda\x67\xa6\xbf\x54\x75\xeb\x1c\x46\xeb\xd6\x3b\x54\x67\x11\x00\x86\x0f\x33\x0d\x41\xa0\xc7\xe7\xc6\xeb\xda\x8f\x82\x44\x2d\xe9\x67\x87\xc4\xa7\xf2\xd9\xb6\xe1\x3f\x7b\x4d\xdb\x35\xb1\x73\x56\xab\xf9\xf8\xaf\x00\x00\x00\xff\xff\x77\x19\xcb\x70\x43\x50\x00\x00") func templateBuilderMutationTmplBytes() ([]byte, error) { return bindataRead( @@ -226,7 +226,7 @@ func templateBuilderMutationTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/builder/mutation.tmpl", size: 20558, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/builder/mutation.tmpl", size: 20547, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -271,7 +271,7 @@ func templateBuilderSetterTmpl() (*asset, error) { return a, nil } -var _templateBuilderUpdateTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x6d\x6f\xdc\xb8\x11\xfe\x2c\xfd\x8a\x39\x61\x73\x90\x0c\x5b\x9b\xe4\x5b\x1d\xb8\xc0\x25\x76\x7a\x06\xda\x5c\x11\xe7\xae\x07\x24\xc1\x41\x2b\x8d\xbc\xac\xb5\xa4\x42\x52\x6b\x1b\x5b\xfd\xf7\x62\xf8\xa2\x97\x5d\xad\xb3\x36\xd2\x43\xaf\x28\x10\xc0\x5a\x91\x1c\xce\x3c\xf3\xf6\x90\xca\x66\x33\x3f\x0a\xdf\x88\xfa\x5e\xb2\xeb\xa5\x86\x97\xcf\x5f\xfc\xe9\xa4\x96\xa8\x90\x6b\x78\x9b\xe5\xb8\x10\xe2\x06\x2e\x79\x9e\xc2\x0f\x55\x05\x66\x92\x02\x1a\x97\x6b\x2c\xd2\xf0\xc3\x92\x29\x50\xa2\x91\x39\x42\x2e\x0a\x04\xa6\xa0\x62\x39\x72\x85\x05\x34\xbc\x40\x09\x7a\x89\xf0\x43\x9d\xe5\x4b\x84\x97\xe9\x73\x3f\x0a\xa5\x68\x78\x11\x32\x6e\xc6\xff\x7a\xf9\xe6\xe2\xdd\xd5\x05\x94\xac\x42\x70\xef\xa4\x10\x1a\x0a\x26\x31\xd7\x42\xde\x83\x28\x41\x0f\x36\xd3\x12\x31\x0d\x8f\xe6\x6d\x1b\x86\x9b\x0d\x14\x58\x32\x8e\x10\x35\x75\x91\x69\x8c\xa0\x6d\xe9\xed\xac\xbe\xb9\x86\xd3\x33\x58\x64\x0a\x61\x96\xbe\x11\xbc\x64\xd7\xe9\xdf\xb3\xfc\x26\xbb\x46\x70\x4b\x35\xae\xea\x2a\xd3\x08\xd1\x12\xb3\x02\x65\x04\xb3\xdd\x21\xb6\xaa\x85\xd4\x7e\xc8\xfe\x82\x38\x0c\x36\x9b\x13\x90\x19\xbf\x46\x98\xd5\x99\x5e\xd2\x66\xb3\xf4\x8a\x2d\x2a\xc6\xaf\x2f\xcd\x2c\x45\x2b\x82\x20\x32\xea\xd0\x94\xb6\x8d\xec\x3a\xe4\x05\x8d\x25\x66\xab\xd9\xa2\x61\x15\xc1\x65\x24\xfc\x6c\xcc\x78\x97\xad\xd0\x5b\x22\x31\x47\xb6\xb6\xe3\xdd\x73\xb7\xc8\x4d\x5a\x35\x3a\xd3\x4c\x70\x9a\x54\x4b\xc6\xf5\x60\x5d\x94\xfa\x51\x83\x4e\x38\x9f\xc3\x70\xdb\xb6\x25\xd7\x11\xee\xfe\x4d\x29\x24\x18\x38\x19\xbf\x36\x53\x53\xa7\x0f\x20\xd7\x4c\x33\x54\x69\xa8\xef\x6b\xdc\x16\xa3\xb4\x6c\x72\x0d\x9b\x30\xc8\x0d\xde\xd6\xd8\x1e\x4a\xeb\xa2\x79\xc9\xb0\x2a\x14\x21\x7a\xd2\xb6\xa1\x55\xe8\x1f\x4b\x94\x08\x59\x51\x28\xc8\x80\xe3\x2d\xd4\x12\x0b\x96\xd3\x32\xd2\x86\xb4\xdb\xda\xcc\x3d\xa6\x61\xd9\xf0\x1c\xe2\x21\x52\x6d\x0b\x47\xe3\xd9\x89\xdd\x20\xae\x15\xa4\x69\xda\xc9\x4e\x87\xc6\x25\xdb\x8b\xc8\x90\x11\xb6\x6d\xdb\x2f\x55\x70\x06\x59\x5d\x23\x2f\xe2\xfd\x73\x8e\xa1\x56\x69\x9a\x26\x61\x20\x51\x37\x92\xc3\xc8\x9f\xd6\xf8\xcd\x06\x6e\x99\x5e\x02\xde\x69\x0a\x8b\x19\x44\xaf\xad\x06\xd1\xc8\xc9\xc1\x28\x28\x15\x6a\x4d\x33\x52\xe7\x7f\x17\x50\x4f\x13\xe6\xdc\x82\xc5\x35\xaa\x5d\x91\xf3\x39\x5c\x65\x6b\x04\xbc\xc3\xbc\x21\xbb\xc9\x17\x5f\x1a\x94\xf7\x90\xf1\x02\xac\x61\xf6\x2d\x6f\x56\x0b\x94\x94\xaf\x5c\x14\xa8\x20\x2b\x4b\xcc\x35\x16\xb0\xb8\x37\xe3\x76\x23\x10\x35\x4a\x03\xd6\x94\xef\x60\xca\x79\xa4\x40\x9c\xeb\x3b\xc8\x05\xd7\x78\xa7\x29\x9f\xe9\x6f\x02\x31\xe3\xfa\x18\x50\x4a\x21\x13\xf2\xd7\x3a\x93\x94\x9c\x01\x4a\x69\xdf\x86\x41\xd0\xa9\xc1\xb8\x0e\x83\xc4\x46\x25\x2b\x61\x96\xfe\x98\x29\x9b\x6f\xe7\x58\x66\x4d\xa5\x6d\xc2\x6e\xa9\x93\x16\x76\x50\xc5\xc9\x28\x7b\x03\x56\x42\x85\x7c\x5b\xfb\x74\x29\xc4\x8d\x4a\xe0\xec\x0c\x9e\x93\x46\x13\xbb\xbd\x59\x62\x7e\x83\xd2\xd5\x07\x92\x43\xea\x9e\x6d\x47\x47\x9a\xd3\xbc\x38\x79\x65\x86\xbf\x3b\x03\xce\x2a\x23\x31\xf0\xe1\xf4\xdc\x98\x4e\x6f\x5a\xb7\x91\xd7\xad\x33\xfa\x78\x8f\x6c\x13\xf9\x57\x5a\x48\x5b\x0f\x3d\xc2\x49\x18\xb4\x80\x95\x42\xb3\x11\xa1\xb9\x6a\x34\xfc\x8d\xa2\x5b\x90\x18\xf3\x84\x6f\x1b\x9e\xc7\xe4\xbb\x29\xa7\x1c\xc3\xca\x4e\x63\x82\x27\x10\xff\x92\x55\x0d\x0e\x5d\x14\x04\x3e\x59\x8e\x41\xdc\x50\xc1\x5a\xa5\xb1\x71\x79\xea\x97\xf9\x8c\x74\xe8\x7c\x27\x6e\xc6\x76\x73\x56\x1d\x43\xb9\xd2\xe9\x05\x49\x2d\xe3\xa8\xe1\x78\x57\x5b\x27\x77\x99\x68\x2a\xd4\xb3\x0f\xd1\x31\xac\x12\x0f\xd1\xd7\x9d\xf1\x14\x6f\xec\xba\xa3\xdf\xac\x73\xc8\x76\x29\x81\xb3\x4e\x55\x1a\x7d\xba\xbf\x7a\x3c\xd3\x42\x70\x84\x33\xd0\xb2\xc1\xb0\x57\x6b\x24\x3a\x0c\x02\x83\x2b\x55\x55\x46\xe0\x3f\x10\xc2\x27\xf0\xe2\x15\x30\xf8\xf3\x19\x3c\x7f\x05\xec\xe4\xa4\xf3\xde\x84\x7e\x66\xc9\x47\xf6\x39\x5e\x35\x9a\xe4\x93\xc9\xac\x84\xdf\xac\x3d\xa7\xc6\x58\xeb\x5f\xa3\xf7\x31\x6c\xc1\x31\x81\xeb\x36\xaa\x6d\x48\xff\x26\x8d\xea\xeb\xd4\xaf\x96\x87\xdc\xa0\xf9\x75\x0c\x8b\x46\x43\x9d\x71\x96\x2b\xf2\x7b\xc6\x6d\x20\x82\xc8\xf3\x46\xaa\x47\x15\xa0\x5f\xa7\x2b\x10\xf5\xda\x4d\xb8\xe5\xbf\xd3\x5d\x80\x06\x1e\x73\x21\x36\xb0\xd5\x68\x18\xa3\x94\xc9\x94\x8d\xce\xbc\x8b\x3b\xcc\x27\xca\xf0\xc1\x46\xd0\xfa\x69\x1b\x2c\x26\x9b\x30\xf8\xed\x10\xf5\x9d\x76\x3d\xee\x24\xb8\xc7\x9d\x7e\x7d\x2b\xdc\x8d\xe4\x69\x9d\x37\x1d\x8e\x13\xda\x7a\x53\x77\xa3\x6a\x8c\xf4\x64\xcb\x7c\xef\x04\x45\x43\x0e\xe5\xa8\x63\x64\x99\xe5\x23\xda\xaa\x29\x1b\x13\x7d\xf5\x90\x56\xbd\xb5\xab\xdb\x62\xa6\x57\x75\xd5\x11\xbd\x12\xa2\x82\x65\x15\xe6\x7a\xfe\x4c\xcd\x3d\x0b\x1e\xd6\x0a\xb3\xe8\xae\x53\xcc\x2e\x9f\x50\x67\x26\x38\x4e\x70\xd1\x9f\xf8\x34\x1d\x1d\xb2\xd1\xc1\xca\x6d\x42\x7a\x30\x1f\x1d\xc9\x78\x90\x92\x66\xa0\x18\xbf\xae\x70\x82\x9b\xde\x0f\x98\xe9\x58\xe0\xa3\xc9\xe9\xd7\xe9\xd9\xd8\xea\xc3\x18\xda\x93\x05\x7e\x33\x96\x66\x05\x15\xd3\xe0\x3d\x90\x97\x63\x38\x1f\x24\x65\x47\x43\xd9\x5f\xa3\x67\xc4\x15\x61\xb4\xe2\x7f\x8b\xa4\x19\xb2\xb2\x8f\xa6\x91\xf1\xff\xa7\x68\xbf\x1f\x45\x1b\x3a\xe3\xf1\x24\xed\x69\xde\xfa\x2a\x41\xeb\xc4\xfe\xf1\xc8\xd9\x00\xcf\x11\x3d\xeb\x4d\xfa\x4f\x50\xb3\x51\x29\x7a\x90\x9d\x8d\xea\x0a\x69\xde\xbb\xf0\xdb\x70\x34\x92\xf7\x30\x3f\x03\x61\x6f\xb5\x1e\x5b\x62\xff\x30\x84\x6d\x42\xeb\xff\x72\xce\x76\x40\x9f\x7d\x0a\x6d\x1b\x88\xfd\x7d\x99\x5b\xff\x38\x3f\x02\xb5\xcc\x24\x16\x9e\xef\x58\x3e\x03\x0b\xd4\xb7\x88\x36\x10\xf5\xad\x70\x24\x40\x2a\x30\xf7\xa8\x3b\xd7\xa8\x9e\x06\x91\x0a\xa6\x78\xc0\xc7\xcf\x3f\x0a\x71\x13\x76\xa5\x0c\x26\xdb\xc1\x3e\x65\x0c\x6b\x01\x89\x2b\xb1\xce\xaa\x47\x2b\xe3\x38\x8f\x63\x96\x03\x8a\x5a\x67\x2a\xcf\x2a\x48\xaf\x72\x51\x63\xfa\x7a\xcc\x40\xbf\xf9\xbd\xe9\x66\xe3\x2f\x7c\xd1\xf2\xe3\x0b\x63\x95\xf7\xad\xc9\x10\x7a\x8f\x1d\x2a\x6f\x2a\xcc\x6c\x88\x39\x8e\x6b\xe6\xb4\x2d\xe4\x34\xa0\xe8\x15\x75\x3a\x4c\x7f\xe6\xec\x4b\x43\x00\x12\x24\xe6\xc2\x18\x7d\xd1\x8a\x0c\x78\x84\x2b\xb5\xfc\xb6\xcd\xaa\x6a\x72\x86\xea\xa0\x07\x2d\xba\x0b\x53\x4c\x3f\xdc\xd7\xb8\x43\xf3\x82\x03\xcf\x5f\x03\x9d\xe3\xc9\xfb\xd1\x9d\x0b\xd2\xd1\x8a\x30\xd8\x77\xf1\x19\x58\xd0\x58\x09\x5c\xe8\x11\x02\x4e\x66\x6d\xda\x9f\xb8\x45\x09\xb1\xcf\x96\x67\xe9\x0b\x62\xe6\x03\x9b\x12\xbf\x60\x7e\x44\xb2\xcc\x25\x24\x99\x2a\xec\x73\x9d\xc9\x6c\x85\x1a\x25\x95\xa2\xb2\x62\xb9\x56\x36\x7b\xcd\x57\x06\xaf\x8e\x59\x61\x42\x2f\x70\x3a\xe1\x17\x52\x60\x04\x8d\xd5\xe9\x0c\xa2\x75\xe4\x7e\x76\xa4\x81\x86\x58\xa1\xde\x3a\xff\xdb\x30\x8a\xde\x53\xb0\x63\x04\x31\x9d\x55\x9a\x2a\x93\x9d\xc7\xfe\xe5\xe2\x36\x81\xe8\xf2\xdc\xc6\x75\xe0\x03\xc4\xcb\x69\x5b\x9b\x2d\xae\x91\x4c\x39\x9c\xdc\xbc\xcf\xc5\x0c\x15\x2c\xee\xe1\xf2\x5c\xa5\x44\x27\x0e\x77\x76\xbf\x7f\xcc\x0a\x73\x59\x3e\xd8\xe2\xf2\xdc\xfc\xdd\x77\x57\x3e\x1d\x0c\x63\x89\xf6\x36\x7c\x7f\x58\x04\x1e\xd0\x72\x1a\xcd\x19\xa6\x57\xa6\xb0\xbd\xa5\x02\x35\x82\xae\xdc\xc2\x6d\x32\x49\xbe\x02\xda\x23\xd1\xf2\x81\x6e\x83\xa3\x6d\x09\xaf\xa3\x5d\xf1\x7b\xd0\x22\x80\x89\x7b\x65\x37\x18\x7f\xfc\x3c\x89\xf3\x71\xc7\x00\x49\x7c\x92\x78\x90\x0d\x39\x8c\x18\xc5\x4e\x1f\xb1\xcc\xce\xb2\xe3\x67\x10\xfd\xd3\x0d\x53\xa0\x9e\x58\x7a\x4b\xc4\xd2\x8e\xb7\xad\xa9\x8b\xa6\x9e\x75\xea\x5b\xae\xcc\x0a\xf5\xd1\x4f\xfa\xec\xd8\x24\x0d\xf7\x2f\xd3\xcb\xf3\x8e\xae\x4f\x7b\x72\xbf\xeb\x6d\xe2\xbb\xe4\x99\x7a\x1a\x35\x8e\xae\xf7\xf9\xaf\x40\x2f\xfd\x57\x04\x87\xe6\xde\xa6\xe1\x1b\xf8\xf8\x7b\xa0\x6b\x15\x83\x0f\x81\xdb\xad\xc2\xcd\x78\x3f\x88\xca\xc7\x74\x9d\x47\x36\x94\xfd\x27\xdc\xf9\x1c\xfc\x99\x16\x14\x6a\x5b\x07\xdc\x1b\x58\xd3\x89\x4d\xf9\x32\xe7\x75\x5b\x60\x29\x24\x82\xca\xd6\x78\x78\x89\xef\x0f\xce\xdd\x41\xd8\x75\xb9\xd2\x76\xb9\xb7\x96\x41\xb4\xa3\xc3\x59\x99\x4e\x9c\xc9\xfd\xa1\xc2\x1e\x19\x27\x3b\x43\xd7\x1a\xff\x82\xda\xb4\x88\x57\xf6\xe8\xb8\x71\x52\x7f\xaa\x69\x30\xab\x48\xd5\xef\xbf\x87\xef\xa6\x85\x8c\x4b\x80\xe9\xb2\x58\xc4\x49\x5f\x95\xfd\xa9\x6f\xed\x15\x19\x78\xdc\xc9\x18\xe9\xef\x12\xb5\x53\xe3\x52\x7d\x60\xe6\x4d\x9c\x0c\x2b\xfd\x44\x89\xbb\x42\x3d\xa5\x53\xbc\x4e\xf6\x1c\x31\x87\x3f\xb6\x79\xdc\x03\xc7\xde\xf9\x1c\x4c\x44\x83\x6c\xb8\x02\x22\x01\x36\xc0\xcd\xf5\x4e\xa3\x50\x9e\xd8\xf8\x2f\x28\x36\x58\x91\x69\x21\x95\x3f\x79\x74\x9f\x4a\x0f\x8d\x09\x77\x8e\xee\x8f\x19\x87\x84\x85\x69\xac\xa4\x4d\x2c\x24\x01\xf2\x4b\xaf\x87\x41\xf4\x82\x37\xab\x04\x62\xd3\xef\xcb\xf4\x72\x45\x28\x2e\x2a\xdf\xc2\x4d\xec\xac\x1f\x1b\x3b\xdd\xad\x83\xd1\x60\xb6\xc8\x14\xb3\x1c\xac\x4c\x5f\xd3\xb3\x29\xa3\xb6\x65\xdb\x69\xe3\xe3\xc7\x6e\x54\x74\x4a\xfb\xb2\x6e\x45\x4e\x1e\x81\xfb\xe2\xf7\xbd\x5b\xc6\x04\x37\xd7\x1d\x1b\x8a\xa7\x53\xdb\x81\xca\xae\x03\x99\xa3\xda\xe9\xe8\x52\xc4\x57\xa6\xb6\x3d\xed\xfd\x06\x65\xc6\x2a\x2c\x4c\xc9\x33\x3c\x1c\x3e\x8d\x25\x7d\x8a\x4e\xe1\xd9\xad\x95\x97\x38\xc3\xda\x03\xc2\x6d\xe8\xc5\x1d\x0a\xdb\xe5\x36\xb9\xb0\x27\x64\xb1\xe3\x67\x3e\x31\x93\x43\x53\x7d\xbb\x51\x5f\x9e\x93\xc3\x0e\x99\xd9\xe7\x33\x55\x80\xde\xc5\xfd\x31\x56\x48\x95\xbe\xc3\xdb\x31\x7e\x86\x53\xdb\xeb\x61\x89\x5f\x1a\x26\xcd\xff\x43\x31\x46\x18\xba\xf4\x69\x4c\x08\x3e\x45\xd1\x21\x29\x3a\xb8\xe8\xd8\xcd\x57\xfb\xf8\xef\x00\x00\x00\xff\xff\xed\xed\x21\x73\x49\x23\x00\x00") +var _templateBuilderUpdateTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x6d\x6f\xdc\xb8\x11\xfe\x2c\xfd\x8a\x39\x61\x73\x90\x0c\x5b\x9b\xe4\x5b\x1d\xb8\xc0\x25\x76\x7a\x06\xda\x5c\x11\xe7\xae\x07\x24\xc1\x41\x2b\x8d\xbc\xac\xb5\xa4\x42\x52\x6b\x1b\x5b\xfd\xf7\x62\xf8\xa2\x97\x5d\xad\xb3\x36\xd2\x43\xaf\x28\x10\xc0\x5a\x91\x1c\xce\x3c\xf3\xf6\x90\xca\x66\x33\x3f\x0a\xdf\x88\xfa\x5e\xb2\xeb\xa5\x86\x97\xcf\x5f\xfc\xe9\xa4\x96\xa8\x90\x6b\x78\x9b\xe5\xb8\x10\xe2\x06\x2e\x79\x9e\xc2\x0f\x55\x05\x66\x92\x02\x1a\x97\x6b\x2c\xd2\xf0\xc3\x92\x29\x50\xa2\x91\x39\x42\x2e\x0a\x04\xa6\xa0\x62\x39\x72\x85\x05\x34\xbc\x40\x09\x7a\x89\xf0\x43\x9d\xe5\x4b\x84\x97\xe9\x73\x3f\x0a\xa5\x68\x78\x11\x32\x6e\xc6\xff\x7a\xf9\xe6\xe2\xdd\xd5\x05\x94\xac\x42\x70\xef\xa4\x10\x1a\x0a\x26\x31\xd7\x42\xde\x83\x28\x41\x0f\x36\xd3\x12\x31\x0d\x8f\xe6\x6d\x1b\x86\x9b\x0d\x14\x58\x32\x8e\x10\x35\x75\x91\x69\x8c\xa0\x6d\xe9\xed\xac\xbe\xb9\x86\xd3\x33\x58\x64\x0a\x61\x96\xbe\x11\xbc\x64\xd7\xe9\xdf\xb3\xfc\x26\xbb\x46\x70\x4b\x35\xae\xea\x2a\xd3\x08\xd1\x12\xb3\x02\x65\x04\xb3\xdd\x21\xb6\xaa\x85\xd4\x7e\xc8\xfe\x82\x38\x0c\x36\x9b\x13\x90\x19\xbf\x46\x98\xd5\x99\x5e\xd2\x66\xb3\xf4\x8a\x2d\x2a\xc6\xaf\x2f\xcd\x2c\x45\x2b\x82\x20\x32\xea\xd0\x94\xb6\x8d\xec\x3a\xe4\x05\x8d\x25\x66\xab\xd9\xa2\x61\x15\xc1\x65\x24\xfc\x6c\xcc\x78\x97\xad\xd0\x5b\x22\x31\x47\xb6\xb6\xe3\xdd\x73\xb7\xc8\x4d\x5a\x35\x3a\xd3\x4c\x70\x9a\x54\x4b\xc6\xf5\x60\x5d\x94\xfa\x51\x83\x4e\x38\x9f\xc3\x70\xdb\xb6\x25\xd7\x11\xee\xfe\x4d\x29\x24\x18\x38\x19\xbf\x36\x53\x53\xa7\x0f\x20\xd7\x4c\x33\x54\x69\xa8\xef\x6b\xdc\x16\xa3\xb4\x6c\x72\x0d\x9b\x30\xc8\x0d\xde\xd6\xd8\x1e\x4a\xeb\xa2\x79\xc9\xb0\x2a\x14\x21\x7a\xd2\xb6\xa1\x55\xe8\x1f\x4b\x94\x08\x59\x51\x28\xc8\x80\xe3\x2d\xd4\x12\x0b\x96\xd3\x32\xd2\x86\xb4\xdb\xda\xcc\x3d\xa6\x61\xd9\xf0\x1c\xe2\x21\x52\x6d\x0b\x47\xe3\xd9\x89\xdd\x20\xae\x15\xa4\x69\xda\xc9\x4e\x87\xc6\x25\xdb\x8b\xc8\x90\x11\xb6\x6d\xdb\x2f\x55\x70\x06\x59\x5d\x23\x2f\xe2\xfd\x73\x8e\xa1\x56\x69\x9a\x26\x61\x20\x51\x37\x92\xc3\xc8\x9f\xd6\xf8\xcd\x06\x6e\x99\x5e\x02\xde\x69\x0a\x8b\x19\x44\xaf\xad\x06\xd1\xc8\xc9\xc1\x28\x28\x15\x6a\x4d\x33\x52\xe7\x7f\x17\x50\x4f\x13\xe6\xdc\x82\xc5\x35\xaa\x5d\x91\xf3\x39\x5c\x65\x6b\x04\xbc\xc3\xbc\x21\xbb\xc9\x17\x5f\x1a\x94\xf7\x90\xf1\x02\xac\x61\xf6\x2d\x6f\x56\x0b\x94\x94\xaf\x5c\x14\xa8\x20\x2b\x4b\xcc\x35\x16\xb0\xb8\x37\xe3\x76\x23\x10\x35\x4a\x03\xd6\x94\xef\x60\xca\x79\xa4\x40\x9c\xeb\x3b\xc8\x05\xd7\x78\xa7\x29\x9f\xe9\x6f\x02\x31\xe3\xfa\x18\x50\x4a\x21\x13\xf2\xd7\x3a\x93\x94\x9c\x01\x4a\x69\xdf\x86\x41\xd0\xa9\xc1\xb8\x0e\x83\xc4\x46\x25\x2b\x61\x96\xfe\x98\x29\x9b\x6f\xe7\x58\x66\x4d\xa5\x6d\xc2\x6e\xa9\x93\x16\x76\x50\xc5\xc9\x28\x7b\x03\x56\x42\x85\x7c\x5b\xfb\x74\x29\xc4\x8d\x4a\xe0\xec\x0c\x9e\x93\x46\x13\xbb\xbd\x59\x62\x7e\x83\xd2\xd5\x07\x92\x43\xea\x9e\x6d\x47\x47\x9a\xd3\xbc\x38\x79\x65\x86\xbf\x3b\x03\xce\x2a\x23\x31\xf0\xe1\xf4\xdc\x98\x4e\x6f\x5a\xb7\x91\xd7\xad\x33\xfa\x78\x8f\x6c\x13\xf9\x57\x5a\x48\x5b\x0f\x3d\xc2\x49\x18\xb4\x80\x95\x42\xb3\x11\xa1\xb9\x6a\x34\xfc\x8d\xa2\x5b\x90\x18\xf3\x84\x6f\x1b\x9e\xc7\xe4\xbb\x29\xa7\x1c\xc3\xca\x4e\x63\x82\x27\x10\xff\x92\x55\x0d\x0e\x5d\x14\x04\x3e\x59\x8e\x41\xdc\x50\xc1\x5a\xa5\xb1\x71\x79\xea\x97\xf9\x8c\x74\xe8\x7c\x27\x6e\xc6\x76\x73\x56\x1d\x43\xb9\xd2\xe9\x05\x49\x2d\xe3\xa8\xe1\x78\x57\x5b\x27\x77\x99\x68\x2a\xd4\xb3\x0f\xd1\x31\xac\x12\x0f\xd1\xd7\x9d\xf1\x14\x6f\xec\xba\xa3\xdf\xac\x73\xc8\x76\x29\x81\xb3\x4e\x55\x1a\x7d\xba\xbf\x7a\x3c\xd3\x42\x70\x84\x33\xd0\xb2\xc1\xb0\x57\x6b\x24\x3a\x0c\x02\x83\x2b\x55\x55\x46\xe0\x3f\x10\xc2\x27\xf0\xe2\x15\x30\xf8\xf3\x19\x3c\x7f\x05\xec\xe4\xa4\xf3\xde\x84\x7e\x66\xc9\x47\xf6\x39\x5e\x35\x9a\xe4\x93\xc9\xac\x84\xdf\xac\x3d\xa7\xc6\x58\xeb\x5f\xa3\xf7\x31\x6c\xc1\x31\x81\xeb\x36\xaa\x6d\x48\xff\x26\x8d\xea\xeb\xd4\xaf\x96\x87\xdc\xa0\xf9\x75\x0c\x8b\x46\x43\x9d\x71\x96\x2b\xf2\x7b\xc6\x6d\x20\x82\xc8\xf3\x46\xaa\x47\x15\xa0\x5f\xa7\x2b\x10\xf5\xda\x4d\xb8\xe5\xbf\xd3\x5d\x80\x06\x1e\x73\x21\x36\xb0\xd5\x68\x18\xa3\x94\xc9\x94\x8d\xce\xbc\x8b\x3b\xcc\x27\xca\xf0\xc1\x46\xd0\xfa\x69\x1b\x2c\x26\x9b\x30\xf8\xed\x10\xf5\x9d\x76\x3d\xee\x24\xb8\xc7\x9d\x7e\x7d\x2b\xdc\x8d\xe4\x69\x9d\x37\x1d\x8e\x13\xda\x7a\x53\x77\xa3\x6a\x8c\xf4\x64\xcb\x7c\xef\x04\x45\x43\x0e\xe5\xa8\x63\x64\x99\xe5\x23\xda\xaa\x29\x1b\x13\x7d\xf5\x90\x56\xbd\xb5\xab\xdb\x62\xa6\x57\x75\xd5\x11\xbd\x12\xa2\x82\x65\x15\xe6\x7a\xfe\x4c\xcd\x3d\x0b\x1e\xd6\x0a\xb3\xe8\xae\x53\xcc\x2e\x9f\x50\x67\x26\x38\x4e\x70\xd1\x9f\xf8\x34\x1d\x1d\xb2\xd1\xc1\xca\x6d\x42\x7a\x30\x1f\x1d\xc9\x78\x90\x92\x66\xa0\x18\xbf\xae\x70\x82\x9b\xde\x0f\x98\xe9\x58\xe0\xa3\xc9\xe9\xd7\xe9\xd9\xd8\xea\xc3\x18\xda\x93\x05\x7e\x33\x96\x66\x05\x15\xd3\xe0\x3d\x90\x97\x63\x38\x1f\x24\x65\x47\x43\xd9\x5f\xa3\x67\xc4\x15\x61\xb4\xe2\x7f\x8b\xa4\x19\xb2\xb2\x8f\xa6\x91\xf1\xff\xa7\x68\xbf\x1f\x45\x1b\x3a\xe3\xf1\x24\xed\x69\xde\xfa\x2a\x41\xeb\xc4\xfe\xf1\xc8\xd9\x00\xcf\x11\x3d\xeb\x4d\xfa\x4f\x50\xb3\x51\x29\x7a\x90\x9d\x8d\xea\x0a\x69\xde\xbb\xf0\xdb\x70\x34\x92\xf7\x30\x3f\x03\x61\x6f\xb5\x1e\x5b\x62\xff\x30\x84\x6d\x42\xeb\xff\x72\xce\x76\x40\x9f\x7d\x0a\x6d\x1b\x88\xfd\x7d\x99\x5b\xff\x38\x3f\x02\xb5\xcc\x24\x16\x9e\xef\x58\x3e\x03\x0b\xd4\xb7\x88\x36\x10\xf5\xad\x70\x24\x40\x2a\x30\xf7\xa8\x3b\xd7\xa8\x9e\x06\x91\x0a\xa6\x78\xc0\xc7\xcf\x3f\x0a\x71\x13\x76\xa5\x0c\x26\xdb\xc1\x3e\x65\x0c\x6b\x01\x89\x2b\xb1\xce\xaa\x47\x2b\xe3\x38\x8f\x63\x96\x03\x8a\x5a\x67\x2a\xcf\x2a\x48\xaf\x72\x51\x63\xfa\x7a\xcc\x40\xbf\xf9\xbd\xe9\x66\xe3\x2f\x7c\xd1\xf2\xe3\x0b\x63\x95\xf7\xad\xc9\x10\x7a\x8f\x1d\x2a\x6f\x2a\xcc\x6c\x88\x39\x8e\x6b\xe6\xb4\x2d\xe4\x34\xa0\xe8\x15\x75\x3a\x4c\x7f\xe6\xec\x4b\x43\x00\x12\x24\xe6\xc2\x18\x7d\xd1\x8a\x0c\x78\x84\x2b\xb5\xfc\xb6\xcd\xaa\x6a\x72\x86\xea\xa0\x07\x2d\xba\x0b\x53\x4c\x3f\xdc\xd7\xb8\x43\xf3\x82\x03\xcf\x5f\x03\x9d\xe3\xc9\xfb\xd1\x9d\x0b\xd2\xd1\x8a\x30\xd8\x77\xf1\x19\x58\xd0\x58\x09\x5c\xe8\x11\x02\x4e\x66\x6d\xda\x9f\xb8\x45\x09\xb1\xcf\x96\x67\xe9\x0b\x62\xe6\x03\x9b\x12\xbf\x60\x7e\x44\xb2\xcc\x25\x24\x99\x2a\xec\x73\x9d\xc9\x6c\x85\x1a\x25\x95\xa2\xb2\x62\xb9\x56\x36\x7b\xcd\x57\x06\xaf\x8e\x59\x61\x42\x2f\x70\x3a\xe1\x17\x52\x60\x04\x8d\xd5\xe9\x0c\xa2\x75\xe4\x7e\x76\xa4\x81\x86\x58\xa1\xde\x3a\xff\xdb\x30\x8a\xde\x53\xb0\x63\x04\x31\x9d\x55\x9a\x2a\x93\x9d\xc7\xfe\xe5\xe2\x36\x81\xe8\xf2\xdc\xc6\x75\xe0\x03\xc4\xcb\x69\x5b\x9b\x2d\xae\x91\x4c\x39\x9c\xdc\xbc\xcf\xc5\x0c\x15\x2c\xee\xe1\xf2\x5c\xa5\x44\x27\x0e\x77\x76\xbf\x7f\xcc\x0a\x73\x59\x3e\xd8\xe2\xf2\xdc\xfc\xdd\x77\x57\x3e\x1d\x0c\x63\x89\xf6\x36\x7c\x7f\x58\x04\x1e\xd0\x72\x1a\xcd\x19\xa6\x57\xa6\xb0\xbd\xa5\x02\x35\x82\xae\xdc\xc2\x6d\x32\x49\xbe\x02\xda\x23\xd1\xf2\x81\x6e\x83\xa3\x6d\x09\xaf\xa3\x5d\xf1\x7b\xd0\x22\x80\x89\x7b\x65\x37\x18\x7f\xfc\x3c\x89\xf3\x71\xc7\x00\x49\x7c\x92\x78\x90\x0d\x39\x8c\x18\xc5\x4e\x1f\xb1\xcc\xce\xb2\xe3\x67\x10\xfd\xd3\x0d\x53\xa0\x9e\x58\x7a\x4b\xc4\xd2\x8e\xb7\xad\xa9\x8b\xa6\x9e\x75\xea\x5b\xae\xcc\x0a\xf5\xd1\x4f\xfa\xec\xd8\x24\x0d\xf7\x2f\xd3\xcb\xf3\x8e\xae\x4f\x7b\x72\xbf\xeb\x6d\xe2\xbb\xe4\x99\x7a\x1a\x35\x8e\xae\xf7\xf9\xaf\x40\x2f\xfd\x57\x04\x87\xe6\xde\xa6\xe1\x1b\xf8\xf8\x7b\xa0\x6b\x15\x83\x0f\x81\xdb\xad\xc2\xcd\x78\x3f\x88\xca\xc7\x74\x9d\x47\x36\x94\xfd\x27\xdc\xf9\x1c\xfc\x99\x16\x14\x6a\x5b\x07\xdc\x1b\x58\xd3\x89\x4d\xf9\x32\xe7\x75\x5b\x60\x29\x24\x82\xca\xd6\x78\x78\x89\xef\x0f\xce\xdd\x41\xd8\x75\xb9\xd2\x76\xb9\xb7\x96\x41\xb4\xa3\xc3\x59\x99\x4e\x9c\xc9\xfd\xa1\xc2\x1e\x19\x27\x3b\x43\xd7\x1a\xff\x82\xda\xb4\x88\x57\xf6\xe8\xb8\x71\x52\x7f\xaa\x69\x30\xab\x48\xd5\xef\xbf\x87\xef\xa6\x85\x8c\x4b\x80\xe9\xb2\x58\xc4\x49\x5f\x95\xfd\xa9\x6f\xed\x15\x19\x78\xdc\xc9\x18\xe9\xef\x12\xb5\x53\xe3\x52\x7d\x60\xe6\x4d\x9c\x0c\x2b\xfd\x44\x89\xbb\x42\x3d\xa5\x53\xbc\x4e\xf6\x1c\x31\x87\x3f\xb6\x79\xdc\x03\xc7\xde\xf9\x1c\x4c\x44\x83\x6c\xb8\x02\x22\x01\x36\xc0\xcd\xf5\x4e\xa3\x50\x9e\xd8\xf8\x2f\x28\x36\x58\x91\x69\x21\x95\x3f\x79\x74\x9f\x4a\x0f\x8d\x09\x77\x8e\xee\x8f\x19\x87\x84\x85\x69\xac\xa4\x4d\x2c\x24\x01\xf2\x4b\xaf\x87\x41\xf4\x82\x37\xab\x04\x62\xd3\xef\xcb\xf4\x72\x45\x28\x2e\x2a\xdf\xc2\x4d\xec\xac\x1f\x1b\x3b\xdd\xad\x83\xd1\x60\xb6\xc8\x14\xb3\x1c\xac\x4c\x5f\xd3\xb3\x29\xa3\xb6\x65\xdb\x69\xe3\xe3\xc7\x6e\x54\x74\x4a\xfb\xb2\x6e\x45\x4e\x1e\x81\xfb\xe2\xf7\xbd\x5b\xc6\x04\x37\xd7\x1d\x1b\x8a\xa7\x53\xdb\x81\xca\xae\x03\x99\xa3\xda\xe9\xe8\x52\xc4\x57\xa6\xb6\x3d\xed\xfd\x06\x65\xc6\x2a\x2c\x4c\xc9\x33\x3c\x1c\x3e\x8d\x25\x7d\x8a\x4e\xe1\xd9\xad\x95\x97\x38\xc3\xda\x03\xc2\x6d\xe8\xc5\x1d\x0a\xdb\xe5\x36\xb9\xb0\x27\x64\xb1\xe3\x67\x3e\x31\x93\x43\x53\x7d\xbb\x51\x5f\x9e\x93\xc3\x0e\x99\xd9\xe7\x33\x55\x80\xde\xc5\xfd\x31\x56\x48\x95\xbe\xc3\xdb\x31\x7e\x86\x53\xdb\xeb\x61\x89\x5f\x1a\x26\xcd\xff\x43\x31\x46\x18\xba\xf4\x69\x4c\x08\x3e\x45\xd1\x21\x29\x3a\xb8\xe8\xd8\xcd\x57\xf7\xf8\xef\x00\x00\x00\xff\xff\xbb\xb9\x1f\xec\x4a\x23\x00\x00") func templateBuilderUpdateTmplBytes() ([]byte, error) { return bindataRead( @@ -286,12 +286,12 @@ func templateBuilderUpdateTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/builder/update.tmpl", size: 9033, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/builder/update.tmpl", size: 9034, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _templateClientTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\xdf\x73\xdb\xb8\xf1\x7f\x16\xff\x8a\xfd\x72\x9c\x7c\x49\x8f\x0c\x5e\xef\xad\xea\xf8\x21\x67\xa7\x57\xcd\xdc\xd9\x77\x8d\xaf\xed\xcc\x4d\x26\x81\xc1\x25\x85\x98\x02\x68\x10\xb2\xe5\x51\xfd\xbf\x77\x16\x00\x7f\x49\xb4\xe3\x4b\xd2\xe9\x8b\x2d\x12\xc0\xee\x07\xbb\x9f\x5d\xec\x82\xbb\x5d\x76\x1c\x9d\xe9\xfa\xc1\xc8\x72\x65\xe1\xfb\xef\xfe\xf4\xe7\x93\xda\x60\x83\xca\xc2\x5f\xb9\xc0\x6b\xad\x6f\x60\xa9\x04\x83\x37\x55\x05\x6e\x52\x03\x34\x6e\xee\x30\x67\xd1\xd5\x4a\x36\xd0\xe8\x8d\x11\x08\x42\xe7\x08\xb2\x81\x4a\x0a\x54\x0d\xe6\xb0\x51\x39\x1a\xb0\x2b\x84\x37\x35\x17\x2b\x84\xef\xd9\x77\xed\x28\x14\x7a\xa3\xf2\x48\x2a\x37\xfe\xd3\xf2\xec\xed\xc5\xbb\xb7\x50\xc8\x0a\x21\xbc\x33\x5a\x5b\xc8\xa5\x41\x61\xb5\x79\x00\x5d\x80\x1d\x28\xb3\x06\x91\x45\xc7\xd9\xe3\x63\x14\xed\x76\x90\x63\x21\x15\x42\x2c\x2a\x89\xca\xc6\x10\x5e\x1f\xd5\x37\x25\x2c\x4e\xe1\x9a\x37\x08\x47\xec\x4c\xab\x42\x96\xec\x17\x2e\x6e\x78\x89\x34\x69\xb7\x03\x8b\xeb\xba\xe2\x16\x21\x5e\x21\xcf\xd1\xc4\x70\xe4\x96\xcb\x75\xad\x8d\x85\x24\x9a\xc5\x95\x2e\xe3\x28\x9a\xc5\x24\xf1\x50\x48\xb6\x96\xa5\xe1\x16\xe3\x68\xb6\xdb\x81\xe1\xaa\x44\x38\xfa\x30\x87\x23\x45\xaa\x8f\xd8\x85\xce\xb1\x21\x91\x33\x2f\x41\x4d\x88\xf0\xef\xfb\x17\x4e\xd6\x09\xa0\xca\x1d\x96\x59\x5c\x4a\xbb\xda\x5c\x33\xa1\xd7\x59\x11\xdc\x92\xa1\xb2\x59\x2e\x79\x85\xc2\x1e\xe8\x0e\xe8\x1d\x80\x77\x56\x1b\x5e\x22\x5b\xba\x77\x0d\x9c\xf4\x58\xc2\xb4\xa0\xd0\xe9\xa3\xd1\x34\x8a\xb2\x0c\xce\x9c\x31\xc9\xa5\xe4\x0f\x6f\x5a\xb0\x2b\x6e\x61\xa5\xab\xbc\x01\x5e\x55\x40\xaf\xae\x37\xb2\xca\xd1\x34\x2c\xb2\x0f\x35\xb6\xcb\x1a\x6b\x36\xc2\xc2\x2e\x9a\x09\xb7\x5d\xbf\x23\x59\x10\xa0\x4d\x4d\x6a\x7f\xf6\x76\xf3\xa6\xc9\x32\x78\x27\x56\xb8\xe6\x7b\xfa\x0a\x6d\x40\x18\xe4\x56\xaa\x72\x0e\xde\xd4\x52\x95\xc0\x55\x0e\xb9\xd1\x75\x4d\x0f\x8d\x5b\xc9\xa2\xd9\x2c\xc8\x38\x0e\x3e\x61\xfe\x79\x64\x4d\xf7\x3b\x98\xea\xd0\x45\x59\x06\xde\x19\x17\x7c\x4d\xd0\x26\xe0\x48\x65\xd1\x70\xe1\x60\xdc\x4b\xbb\x72\xe3\xe3\x45\xbd\x49\x66\xb3\xf1\xc8\xf1\xe8\xd1\xdb\xea\x10\x5e\x4f\x4a\xaf\x37\x2b\x24\x56\x79\x93\xf1\x3c\x97\x56\x6a\xc5\xab\x40\x53\x37\xdb\x81\x38\xb2\xeb\xba\x6a\x68\x3f\x6b\x6e\xc5\xea\xea\xb3\x12\xb2\xe3\xd8\x6f\x79\x60\x0f\x92\xe1\x4c\xe2\x85\xb9\x61\x37\xbe\xed\x10\xf9\x39\x47\xfd\xd2\x21\xee\xf0\xfb\xd1\xf1\xe7\x02\xef\x03\x17\x9c\x03\xb1\x01\x0e\x0a\xef\x5b\x53\x7a\x5a\x6c\x0c\xe6\xbd\x15\x4b\x79\x87\x0a\x74\x4d\x08\x1b\x16\x15\x1b\x25\x7a\x31\x89\xae\x6d\x03\x8c\xb1\x4b\x37\x9e\xc2\x71\x10\x4f\x1c\x2b\x5c\xa0\x7b\x99\xbb\x4a\x97\x0b\xa8\x74\xc9\x7e\x31\x52\xd9\x4a\xcd\x61\xa5\xf5\x4d\xb3\x80\xd7\xee\xff\x8e\xe0\x8a\xa2\x64\x41\x91\x13\xcc\x18\x4b\xa3\x59\xc0\xb6\x38\x85\xd7\x5e\xf8\xce\x8b\x5c\x80\x28\xca\xc7\x76\x9c\x49\x25\x6d\x92\x46\x33\x83\x76\x63\x54\xd8\x11\x6d\xdb\x21\x4e\x44\x0b\x2d\x05\x3f\x93\x20\x3e\x4b\x7f\x11\x98\x0a\xa7\xd0\x52\xf7\x02\xef\xfd\xbb\x44\xb0\xdc\xc8\x3b\x34\xe9\x8b\x79\x0c\x00\x30\x13\x6c\x4c\xbd\x53\x20\x5b\x4e\xf0\x2f\x11\xcc\xef\x32\x9d\xf0\xe2\x65\xed\x3c\x82\x8a\xdc\x97\x73\xcb\x29\x99\x66\xcd\x6d\xc5\xce\x7f\x80\xa6\x46\x21\x0b\x89\x39\x5c\x3f\x38\x07\x7a\xa0\xa0\x48\x3c\x57\x39\x09\x70\xaf\xb9\xe5\x6d\xea\xa6\xb1\xb9\x8b\x5f\x6f\xbd\x3d\x5a\x70\x6b\xe9\xb0\xc8\xc1\x6a\x90\x96\x79\x08\x9e\xb1\x50\x73\xc3\xd7\x68\xd1\x34\x20\xb8\x82\x6b\x04\x9e\xe7\x98\xfb\x24\x11\xe8\x44\x51\xd9\x07\x6c\xe0\x10\x6d\x22\xf1\xd8\x2e\x9c\x7a\x02\xf4\xce\xe1\x71\x96\x68\xac\x71\xf9\x25\x10\x62\x48\xb2\x24\xb8\x72\x0e\x68\x8c\x36\xce\x95\xcd\xbd\xb4\x62\x05\xbd\x40\x47\x41\x3a\x64\x76\x3b\xf8\xa4\xa5\x1a\x64\xdd\x73\x9f\xa1\x1b\x88\xe7\x40\x01\xb7\x08\x61\xd3\xc5\x5a\x4d\x1c\x2d\x20\x0e\xa9\x3c\x7b\xd5\x64\x21\x64\xc9\xea\x71\x2f\x2a\x24\xee\xa9\x70\x64\x7e\x2c\xc7\x82\x6f\x2a\x4b\x2a\x02\x33\x95\xac\xe6\x50\xac\x2d\x7b\x4b\xe0\x8b\x24\xde\xa8\xc6\xd3\x0f\xf3\x80\x7f\x01\xaf\x6e\xe3\xf9\x60\x33\x69\x34\x6b\x9d\x7f\xb5\xdd\x73\x92\x35\x5c\x35\x94\xfb\x9c\x3f\x82\x8d\xe1\x6a\x85\x50\x1b\x7d\x27\xc9\x19\x42\x2b\x8b\x5b\x4b\xcb\x65\x03\x1b\x5f\x09\x58\x59\x39\xaf\x0c\xd6\xd3\xa8\xd0\xeb\xb5\xb4\x84\x45\x1b\x30\xba\xaa\x88\x49\x5c\xdc\xb0\xc3\x40\xba\xda\x26\xc2\x6e\x5b\xe9\x74\x86\xd2\x7f\xf2\xcf\xd5\x76\xe8\x1b\x59\xc0\x87\x39\xe8\x1b\x97\x0e\x42\xe0\xb0\xe4\xd8\x6e\xcf\x7d\x0c\xfd\x85\xc6\x76\xcf\x58\xa8\xad\x1b\x1e\x1f\x17\xc4\x32\xa5\xe9\x2c\xe3\xc6\x02\x1f\xa1\xa7\x9c\x25\xd5\xf8\x65\xec\x4c\x37\xb3\x1e\x10\x21\x50\x78\xef\x81\xcf\x61\x10\xc5\xb2\x70\xe3\xff\x77\x4a\xda\x5f\x0c\xc6\xa1\x70\x67\xdf\x50\xe7\x02\x5e\xdd\xc5\x4e\x9f\x57\xde\x66\x42\xd6\x1e\xbb\x94\xe8\x42\x58\x9e\x82\xdd\x76\x49\xeb\xf5\xd5\x96\x34\x0b\xbb\x5d\x00\x01\xa4\xdf\x7d\xae\x9b\xfb\x93\xeb\xa9\x72\xe6\xa4\x3d\x1a\x06\xc9\x64\xf1\x64\x7a\x29\xca\x34\xc8\x6b\x2b\x8c\xd9\xe3\x9c\x36\x1b\xb9\x3a\xed\x04\xb2\x63\x58\x16\x8e\x20\x4d\xe0\x7a\x40\x1c\xc8\xda\xc0\xd5\xf6\x32\xc4\x66\x52\xc9\x1b\x84\x77\xbf\xfe\x94\x82\xab\xff\xfa\x60\x9a\x8c\x25\xbb\x0d\x41\x3d\x8c\xa4\xb0\x4c\x16\xb0\xe2\xcd\xd5\x38\x96\x42\xfa\x9c\x0e\xb3\xb0\xb0\x2d\xcc\xb2\x0c\xce\xf1\x7a\x53\xee\x45\x49\x4e\xef\x4e\xda\xe8\x58\xda\xff\x0f\x71\x60\x35\x94\x68\xe1\x0e\xcd\xb5\x6e\x90\x4e\xa8\x92\xfc\xa9\x55\x9b\x48\x05\x65\x5a\xaa\x70\xdc\xf1\x97\x65\x51\x96\xb5\x47\x8e\xd3\x93\xa4\xf4\xd6\x59\x32\x91\x2a\xc7\x6d\xe7\x90\xef\xd2\xd6\xe8\x7e\xc6\xaf\x1b\x34\x0f\xed\xf4\x33\xbd\x21\x37\xd8\x6d\x4a\x32\x0f\x42\x2b\x88\x1e\x9e\xa7\xb2\x20\xbe\xba\xad\x0d\xe8\x29\x5e\xc0\xb0\x60\xfa\x80\xb7\x25\x3d\xd1\xbf\xd2\xe5\x37\x38\x61\x5d\x61\x4a\xd6\x13\xf4\xb7\xe9\x8e\x17\x57\xe3\x0b\xad\x14\xfa\xf8\xa4\x03\xa6\x36\x78\x87\xca\x36\xce\x29\xb7\x1b\x34\x12\x1b\x28\x8c\x5e\x77\xb1\x34\x91\x68\x9c\xf4\x24\xf5\x29\x85\x76\xdf\x42\x68\x93\x49\x98\x10\xc0\xfc\xd6\xb8\x53\xc8\x03\x59\x6f\xac\x73\x9e\xaf\x37\xc8\xdf\x54\x24\xd3\x08\x2a\x2b\xed\x43\xd8\x87\xf3\x2d\x2c\x15\x68\xe3\x5a\x24\x4d\x12\x06\x6b\x7a\x3a\x88\x70\xf6\x08\x5e\x55\x0b\xf8\x18\x8c\x43\x2e\x67\xbf\x35\x98\x50\xd1\xf2\x71\x62\x0f\x34\xe6\xc5\x31\xc6\xfe\xa6\xf5\x4d\x57\x81\x3c\xdb\x9f\xec\x55\x0c\xac\x13\xe3\x8b\xa3\x71\x6d\x10\xf5\xe9\x61\x5f\x12\x49\xe9\xfd\xec\x82\xb2\x13\x1b\x9f\xf5\x3d\x5a\x28\xb6\xc3\x54\x5f\x6c\xf3\x61\xa9\x7d\x58\x59\xb7\xa5\xbe\x6b\x35\xc6\x8b\x0f\x3a\x8e\xd0\x04\x1a\x14\x0e\x9f\x62\x7f\x47\x81\x8e\xa6\x8f\x8f\xbb\x1d\x45\x3f\xde\xfa\xe1\x58\xc4\xfe\x9d\x7b\xea\xf3\xc8\x2b\xf6\x3d\xe5\x8d\xa0\xfe\xdf\x50\xe9\xfb\x76\xf5\x20\x05\x84\xb4\xd7\x23\xe9\xb3\xc1\xb3\x7b\x71\x4c\xec\xcb\x5e\x8f\xba\xaf\x7a\x47\x32\x13\x11\xc6\x53\xdf\x42\xf4\xca\x7a\x86\xbe\x1e\x0d\xf4\x71\xf5\xb8\x4f\x55\x0e\x95\x6c\x2c\xf5\xd4\x87\x84\x25\x3c\xfe\xa1\xb1\xee\x24\xce\x32\x78\xe3\xf8\x47\xa3\x1f\x89\x12\xc5\x1c\xca\x39\xac\xd2\x8f\x80\xb7\x1b\x5e\xb9\x65\x1f\xf7\x5b\x58\x47\xbb\x26\x29\x92\x32\x59\x25\x69\x9a\x8e\x78\x3a\x02\xfa\x14\x5d\x05\xf3\xdc\xdb\xaf\x62\x79\x5d\xa3\xca\x93\xc9\xe1\x50\xe9\x3b\xbe\x86\x64\xe1\x7a\x8f\xa1\x4b\xfc\x8b\xd0\xa2\x39\xd7\x8c\x59\xff\x24\x4c\x2f\x2a\x49\xdb\x26\xce\x3f\xb7\xc0\x76\xd1\xac\xb3\xa6\x3f\xf9\xfd\xac\x9f\xc3\xcb\x30\xaf\x2b\xb6\xe7\x70\x59\x7b\x09\xe9\xd8\x83\x7b\x82\x7b\x3f\x76\x0b\x43\x37\x23\x82\x8d\xd3\x79\xe7\xc7\x45\xf7\xeb\x71\xb4\xff\x1f\x36\xd5\xcd\xc0\x06\xc3\xcd\xb7\xdd\xb5\x7b\x5d\xdd\x10\x2b\xc6\x16\x77\xa9\x4b\x62\xf3\x39\xc3\x90\x8e\xa4\xed\x7c\xc9\x93\x53\x66\xda\x33\x1e\xad\x19\x18\x70\xca\x0c\x83\x29\x13\xa6\x68\xf5\x2d\xba\x5f\x1d\xdb\xeb\x7c\xe4\x78\x05\x1b\xff\xe6\x0b\x3c\xef\x65\xf5\x9e\xf7\xcf\x5f\xe3\x79\x2f\xe1\xc0\xf3\x23\xc1\x5f\xe9\x79\x2f\xeb\x52\x7d\xce\x06\x7d\x06\xf2\x87\xd4\xe7\xcc\x70\xa9\x30\x69\x53\xe5\xc1\x8d\xc6\x9e\x89\x2e\xd5\x37\xb0\xd2\xa5\xc2\x39\x79\xca\x1f\x24\x31\x55\xde\xf1\x40\xe5\x00\x4c\xfa\x84\x41\x7b\x18\xdf\xca\xa6\xcb\xf3\x17\x5b\x55\xe6\x2f\xb0\xe8\xf2\x3c\x91\x79\xa0\xe3\xf2\x9c\x5d\xd1\xf1\xf6\x3f\xb0\x66\xbc\x3c\xa7\x93\x30\x91\xf9\x7f\xdd\x94\xe7\x58\xe1\x28\x31\xe7\xfe\xc5\x17\x84\xa7\x17\xd5\x87\xa7\x7f\xfe\x1a\x53\x79\x09\x07\x26\x18\x09\xfe\x26\xfb\x1f\x85\xe7\x94\x09\x5e\x1e\x9d\x9d\xc0\x17\x44\x67\x37\xf7\x30\xf9\x8a\x7e\x70\x79\x3e\x10\xc5\x96\xe7\xe9\x3e\xf4\x61\x14\x3c\x0f\xfe\xb9\x20\x18\xea\x7b\x2e\x08\xa6\x40\xb7\xda\x5c\x43\xd2\xf2\x80\xfd\x73\x85\xc6\x9b\x61\x54\x92\x38\xf9\x44\xec\xb0\x8a\xb5\x3e\x61\x32\x87\x53\x78\x2d\xf3\x89\x21\x5d\xc3\x69\xc7\x88\x4b\x85\xd3\x9c\x18\x84\x45\x90\xd0\xfa\xd9\x75\x62\x03\x33\xdd\xba\xe7\x2f\x60\x79\x68\xe9\x5a\x6b\xb8\xc7\x27\xcf\xce\xe1\xe8\x01\x51\x5b\x68\x3f\xa2\x1d\x00\x9b\x38\xf5\x1f\xe0\xfa\x01\xa4\x6d\x9e\x75\xdf\x8f\x68\xa7\xae\x66\xe6\x30\xe9\xcb\xe4\x78\xaf\x60\xeb\xaf\x6e\x3a\x02\xb6\xcd\xeb\xf3\x6e\x64\x97\xaa\x7a\xf0\x5d\x6d\xb7\x9d\x7f\xf9\x2f\x50\x37\x48\x0f\x54\x1d\x58\xa8\xb9\x92\xa2\xa1\x6a\x9f\xab\xd0\xd4\x69\x21\x36\xe6\x99\x7a\x86\x04\xfd\x81\x2d\x8d\x77\x44\x3b\xd1\xd7\x9f\xba\x2b\x20\xc1\x82\x81\x68\xf5\xe4\xe5\x8f\x43\x98\x74\x37\x38\xc1\x0c\xfa\xfa\x53\xe8\x60\x06\x3d\x1b\x86\x4e\xe6\x6d\x5e\xf6\xad\xd6\x20\x06\x8e\xd0\xc1\x1a\xb9\xbf\x23\x21\x25\x7d\xde\x08\x5e\xd1\xb4\x16\x6d\xdb\x16\xb7\xed\x49\x3f\x82\x79\x89\x54\x0d\xf2\x3f\x44\xd0\x29\x25\x9f\x4d\x48\xed\x0e\xbc\xf5\x7c\x84\x2c\x4e\x3d\x97\xfb\xb1\x09\x1e\xfb\xb9\xac\xe6\x76\x05\xa7\x40\xc0\x9e\xb8\x25\xa4\x5e\xeb\x1f\x6e\x23\xdd\xcd\xec\x0f\x9d\xe0\x39\x7c\x18\xd0\xb0\xff\xa6\x82\x5b\x4b\x6d\xde\x91\x82\xb8\x6d\x1d\xe3\xd0\x30\x92\x03\x62\xf2\x47\xbc\xcc\x5d\x3b\x1b\x3b\x0d\x31\xf4\x17\x63\xcf\x5c\xf0\x3a\xd4\x19\xad\xd8\xbb\x95\x7a\xe2\x73\x0b\x1b\xdc\xfd\x76\x57\x68\x2d\x51\x9c\x62\x7f\x9d\x36\xa0\x8f\x53\x11\x39\x82\x0c\x5a\x55\x77\x2e\x75\x31\x3f\xf8\xb0\xe5\xdb\xa6\x27\x5d\x1b\xce\x33\xf8\xfd\x3d\xfd\x1a\x7c\xce\xd0\xc6\x79\x73\xb3\xf6\x92\xfd\xef\x5f\x74\x25\xc5\x83\xdf\x8f\xef\xeb\x5c\x1c\x4c\xf4\x6b\xfd\x2e\x42\x57\xe7\xe6\xfc\xbe\xa8\x50\xf9\x9f\xe9\xe0\xe7\xfb\x39\x4c\x77\x99\xbf\x2f\xde\x0f\x6e\x28\xaa\x66\x2c\xf9\x09\xc5\xe3\xdb\x8c\xde\x4c\x03\x83\xed\x76\xd9\x31\xbc\xe9\xbf\xc6\xb9\x8f\x9f\xe1\xcb\x83\xbe\x43\x63\xdc\x85\xb7\xdc\xbb\xc7\xe9\x3f\xb1\x81\xff\xe8\xd6\xb6\xd5\xe1\xf6\x26\xdc\x5a\xee\x7d\xb4\x9e\xfa\xc4\x37\xba\x68\xf8\x4f\x00\x00\x00\xff\xff\x7b\xae\x6b\x00\xab\x1f\x00\x00") +var _templateClientTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x6d\x73\xdb\xb8\xf1\x7f\x2d\x7e\x8a\xfd\x73\x9c\xfc\x49\x8f\x0c\x5e\xef\x5d\xd5\xf1\x8b\x9c\x9d\x5e\x35\x73\x67\xdf\x35\xbe\xb6\x33\x37\x99\x04\x06\x97\x14\x62\x0a\xa0\x41\xc8\x96\x47\xf5\x77\xef\x2c\x00\x3e\x49\xb4\xe3\x4b\xd2\xe9\x1b\x5b\xc4\xc3\xee\x62\xf7\xb7\x4f\xc0\x6e\x97\x1d\x47\x67\xba\x7e\x30\xb2\x5c\x59\xf8\xfe\xbb\x3f\xfd\xf9\xa4\x36\xd8\xa0\xb2\xf0\x57\x2e\xf0\x5a\xeb\x1b\x58\x2a\xc1\xe0\x4d\x55\x81\x5b\xd4\x00\xcd\x9b\x3b\xcc\x59\x74\xb5\x92\x0d\x34\x7a\x63\x04\x82\xd0\x39\x82\x6c\xa0\x92\x02\x55\x83\x39\x6c\x54\x8e\x06\xec\x0a\xe1\x4d\xcd\xc5\x0a\xe1\x7b\xf6\x5d\x3b\x0b\x85\xde\xa8\x3c\x92\xca\xcd\xff\xb4\x3c\x7b\x7b\xf1\xee\x2d\x14\xb2\x42\x08\x63\x46\x6b\x0b\xb9\x34\x28\xac\x36\x0f\xa0\x0b\xb0\x03\x66\xd6\x20\xb2\xe8\x38\x7b\x7c\x8c\xa2\xdd\x0e\x72\x2c\xa4\x42\x88\x45\x25\x51\xd9\x18\xc2\xf0\x51\x7d\x53\xc2\xe2\x14\xae\x79\x83\x70\xc4\xce\xb4\x2a\x64\xc9\x7e\xe1\xe2\x86\x97\x48\x8b\x76\x3b\xb0\xb8\xae\x2b\x6e\x11\xe2\x15\xf2\x1c\x4d\x0c\x47\x6e\xbb\x5c\xd7\xda\x58\x48\xa2\x59\x5c\xe9\x32\x8e\xa2\x59\x4c\x14\x0f\x89\x64\x6b\x59\x1a\x6e\x31\x8e\x66\xbb\x1d\x18\xae\x4a\x84\xa3\x0f\x73\x38\x52\xc4\xfa\x88\x5d\xe8\x1c\x1b\x22\x39\xf3\x14\xd4\x04\x09\x3f\xde\x0f\x38\x5a\x27\x80\x2a\x77\xb2\xcc\x62\x54\xb6\xd4\x4c\xea\x0c\x95\xcd\x72\xc9\x2b\x14\xf6\x80\x61\x10\xd9\x71\x7d\x67\xb5\xe1\x25\xb2\xa5\x1b\x6b\xe0\xa4\x17\x20\x2c\x0b\x5c\x1c\x13\x9a\x4d\xa3\x28\xcb\xe0\xcc\x69\x90\xec\x48\x46\xf0\xfa\x04\xbb\xe2\x16\x56\xba\xca\x1b\xe0\x55\x05\x34\x74\xbd\x91\x55\x8e\xa6\x61\x91\x7d\xa8\xb1\xdd\xd6\x58\xb3\x11\x16\x76\xd1\x4c\xb8\x33\xfa\x63\xc8\x82\x04\xda\xd4\xc4\xf6\x67\xaf\x2c\xaf\x8f\x2c\x83\x77\x62\x85\x6b\xbe\xc7\xaf\xd0\x06\x84\x41\x6e\xa5\x2a\xe7\xe0\xf5\x2b\x55\x09\x5c\xe5\x90\x1b\x5d\xd7\xf4\xd1\xb8\x9d\x2c\x9a\xcd\x02\x8d\xe3\x60\x08\xe6\xbf\x47\x2a\x74\xbf\x83\xaa\x0e\xed\x92\x65\xe0\x2d\x70\xc1\xd7\x24\xda\x84\x38\x52\x59\x34\x5c\x38\x31\xee\xa5\x5d\xb9\xf9\xf1\xa6\x5e\x25\xb3\xd9\x78\xe6\x78\xf4\xe9\x75\x75\x28\x5e\x8f\x44\xcf\x37\x2b\x24\x56\x79\x93\xf1\x3c\x97\x56\x6a\xc5\xab\x80\x4d\xb7\xda\x09\x71\x64\xd7\x75\xd5\xd0\x79\xd6\xdc\x8a\xd5\xd5\x67\x29\x64\xc7\xb1\x3f\xf2\x40\x1f\x44\xc3\xa9\xc4\x13\x73\xd3\x6e\x7e\xdb\x49\xe4\xd7\x1c\xf5\x5b\x87\x72\x87\xdf\x8f\x0e\x3f\x17\x78\x1f\xb0\xe0\x0c\x88\x0d\x70\x50\x78\xdf\xaa\xd2\xc3\x62\x63\x30\xef\xb5\x58\xca\x3b\x54\xa0\x6b\x92\xb0\x61\x51\xb1\x51\xa2\x27\x93\xe8\xda\x36\xc0\x18\xbb\x74\xf3\x29\x1c\x07\xf2\x84\xb1\xc2\x79\xb7\xa7\xb9\xab\x74\xb9\x80\x4a\x97\xec\x17\x23\x95\xad\xd4\x1c\x56\x5a\xdf\x34\x0b\x78\xed\xfe\xef\x48\x5c\x51\x94\x2c\x30\x72\x84\x19\x63\x69\x34\x0b\xb2\x2d\x4e\xe1\xb5\x27\xbe\xf3\x24\x17\x20\x8a\xf2\xb1\x9d\x67\x52\x49\x9b\xa4\xd1\xcc\xa0\xdd\x18\x15\x4e\x44\xc7\x76\x12\x27\xa2\x15\x2d\x05\xbf\x92\x44\x7c\x16\xfe\x22\x20\x15\x4e\xa1\x85\xee\x05\xde\xfb\xb1\x44\xb0\xdc\xc8\x3b\x34\xe9\x8b\x71\x0c\x00\x30\x13\x6c\x0c\xbd\x53\x20\x5d\x4e\xe0\x2f\x11\xcc\x9f\x32\x9d\xb0\xe2\x65\xed\x2c\x82\x8a\xcc\x97\x73\xcb\x29\x82\x66\xcd\x6d\xc5\xce\x7f\x80\xa6\x46\x21\x0b\x89\x39\x5c\x3f\x38\x03\x7a\x41\x41\x11\x79\xae\x72\x22\xe0\x86\xb9\xe5\x6d\xbc\xa6\xb9\xb9\xf3\x5f\xaf\xbd\x3d\x58\x70\x6b\x29\x43\xe4\x60\x35\x48\xcb\xbc\x08\x1e\xb1\x50\x73\xc3\xd7\x68\xd1\x34\x20\xb8\x82\x6b\x04\x9e\xe7\x98\xfb\x20\x11\xe0\x44\x5e\xd9\x3b\x6c\xc0\x10\x1d\x22\xf1\xb2\x5d\x38\xf6\x24\xd0\x3b\x27\x8f\xd3\x44\x63\x8d\x8b\x2f\x01\x10\x43\x90\x25\xc1\x94\x73\x40\x63\xb4\x71\xa6\x6c\xee\xa5\x15\x2b\xe8\x09\x3a\x08\x52\x66\xd9\xed\xe0\x93\x96\x6a\x10\x75\xcf\x7d\x84\x6e\x20\x9e\x03\x39\xdc\x22\xb8\x4d\xe7\x6b\x35\x61\xb4\x80\x38\x84\xf2\xec\x55\x93\x05\x97\x25\xad\xc7\x3d\xa9\x10\xb8\xa7\xdc\x91\xf9\xb9\x1c\x0b\xbe\xa9\x2c\xb1\x08\xc8\x54\xb2\x9a\x43\xb1\xb6\xec\x2d\x09\x5f\x24\xf1\x46\x35\x1e\x7e\x98\x07\xf9\x17\xf0\xea\x36\x9e\x0f\x0e\x93\x46\xb3\xd6\xf8\x57\xdb\x3d\x23\x59\xc3\x55\x43\xb1\xcf\xd9\x23\xe8\x18\xae\x56\x08\xb5\xd1\x77\x92\x8c\x21\xb4\xb2\xb8\xb5\xb4\x5d\x36\xb0\xf1\xe9\xdf\xca\xca\x59\x65\xb0\x9f\x66\x85\x5e\xaf\xa5\x25\x59\xb4\x01\xa3\xab\x8a\x90\xc4\xc5\x0d\x3b\x74\xa4\xab\x6d\x22\xec\xb6\xa5\x4e\x89\x93\xfe\x93\x7d\xae\xb6\x43\xdb\xc8\x02\x3e\xcc\x41\xdf\xb8\x70\x10\x1c\x87\x25\xc7\x76\x7b\xee\x7d\xe8\x2f\x34\xb7\x7b\x46\x43\x6d\xb1\xf0\xf8\xb8\x20\x94\x29\x4d\xb9\x8c\x1b\x0b\x7c\x24\x3d\xc5\x2c\xa9\xc6\x83\xb1\x53\xdd\xcc\x7a\x81\x48\x02\x85\xf7\x5e\xf0\x39\x0c\xbc\x58\x16\x6e\xfe\xff\x4e\x89\xfb\x8b\x85\x71\x52\xb8\xdc\x37\xe4\xb9\x80\x57\x77\xb1\xe3\xe7\x99\xb7\x91\x90\xb5\x69\x97\x02\x5d\x70\xcb\x53\xb0\xdb\x2e\x68\xbd\xbe\xda\x12\x67\x61\xb7\x0b\x20\x01\xe9\x77\x1f\xeb\xe6\x3e\x73\x3d\x55\xc3\x9c\xb4\xa9\x61\x10\x4c\x16\x4f\x86\x97\xa2\x4c\x03\xbd\xb6\xc2\x98\x3d\xce\xe9\xb0\x91\x2b\xce\x4e\x20\x3b\x86\x65\xe1\x00\xd2\x04\xac\x07\x89\x03\x58\x1b\xb8\xda\x5e\x06\xdf\x4c\x2a\x79\x83\xf0\xee\xd7\x9f\x52\x70\x45\x5f\xef\x4c\x93\xbe\x64\xb7\xc1\xa9\x87\x9e\x14\xb6\xc9\x02\x56\xbc\xb9\x1a\xfb\x52\x08\x9f\xd3\x6e\x16\x36\xb6\xd5\x58\x96\xc1\x39\x5e\x6f\xca\x3d\x2f\xc9\x69\xec\xa4\xf5\x8e\xa5\xfd\xff\xe0\x07\x56\x43\x89\x16\xee\xd0\x5c\xeb\x06\x29\x43\x95\x64\x4f\xad\xda\x40\x2a\x28\xd2\x52\x85\xe3\xd2\x5f\x96\x45\x59\xd6\xa6\x1c\xc7\x27\x49\x69\xd4\x69\x32\x91\x2a\xc7\x6d\x67\x90\xef\xd2\x56\xe9\x7e\xc5\xaf\x1b\x34\x0f\xed\xf2\x33\xbd\x21\x33\xd8\x6d\x4a\x34\x0f\x5c\x2b\x90\x1e\xe6\x53\x59\x10\x5e\xdd\xd1\x06\xf0\x14\x2f\x40\x58\x50\x7d\x90\xb7\x05\x3d\xc1\xbf\xd2\xe5\x37\xc8\xb0\xae\x30\x25\xed\x09\xfa\xdb\x74\xe9\xc5\x15\xf6\x42\x2b\x85\xde\x3f\x29\xc1\xd4\x06\xef\x50\xd9\xc6\x19\xe5\x76\x83\x46\x62\x03\x85\xd1\xeb\xce\x97\x26\x02\x8d\xa3\x9e\xa4\x3e\xa4\xd0\xe9\x5b\x11\xda\x60\x12\x16\x04\x61\x7e\x6b\x5c\x16\xf2\x82\xac\x37\xd6\x19\xcf\xd7\x1b\x64\x6f\x2a\x92\x69\x06\x95\x95\xf6\x21\x9c\xc3\xd9\x16\x96\x0a\xb4\x71\x7d\x91\x26\x0a\x83\x3d\x3d\x1c\x44\xc8\x3d\x82\x57\xd5\x02\x3e\x06\xe5\x90\xc9\xd9\x6f\x0d\x26\x54\xb4\x7c\x9c\x38\x03\xcd\x79\x72\x8c\xb1\xbf\x69\x7d\xd3\x55\x20\xcf\x36\x25\x7b\x15\x03\xeb\xc8\xf8\xe2\x68\x5c\x1b\x44\x7d\x78\xd8\xa7\x44\x54\x7a\x3b\x3b\xa7\xec\xc8\xc6\x67\x7d\x63\x16\x8a\xed\xb0\xd4\x17\xdb\x7c\x58\x6a\x1f\x56\xd6\x6d\xa9\xef\x5a\x8d\xf1\xe6\x83\x8e\x23\x74\x7e\x06\x85\x93\x4f\xb1\xbf\xa3\x40\x07\xd3\xc7\xc7\xdd\x8e\xbc\x1f\x6f\xfd\x74\x2c\x62\x3f\xe6\xbe\xfa\x38\xf2\x8a\x7d\x4f\x71\x23\xb0\xff\x37\x54\xfa\xbe\xdd\x3d\x08\x01\x21\xec\xf5\x92\xf4\xd1\xe0\xd9\xb3\x38\x24\xf6\x65\xaf\x97\xba\xaf\x7a\x47\x34\x13\x11\xe6\x53\xdf\x42\xf4\xcc\x7a\x84\xbe\x1e\x4d\xf4\x7e\xf5\xb8\x0f\x55\x0e\x95\x6c\x2c\x35\xd2\x87\x80\x25\x79\xfc\x47\x63\x5d\x26\xce\x32\x78\xe3\xf0\x47\xb3\x1f\x09\x12\xc5\x1c\xca\x39\xac\xd2\x8f\x80\xb7\x1b\x5e\xb9\x6d\x1f\xf7\xfb\x56\x07\xbb\x26\x29\x92\x32\x59\x25\x69\x9a\x8e\x70\x3a\x12\xf4\x29\xb8\x0a\xe6\xb1\xb7\x5f\xc5\xf2\xba\x46\x95\x27\x93\xd3\xa1\xd2\x77\x78\x0d\xc1\xc2\xf5\x1e\x43\x93\xf8\x81\xd0\xa2\x39\xd3\x8c\x51\xff\xa4\x98\x9e\x54\x92\xb6\x4d\x9c\xff\x6e\x05\xdb\x45\xb3\x4e\x9b\x3e\xf3\xfb\x55\x3f\x87\xc1\xb0\xae\x2b\xb6\xe7\x70\x59\x7b\x0a\xe9\xd8\x82\x7b\x84\x7b\x3b\x76\x1b\x43\x37\x23\x82\x8e\xd3\x79\x67\xc7\x45\xf7\xeb\x71\x74\xfe\x1f\x36\xd5\xcd\x40\x07\xc3\xc3\xb7\xdd\xb5\x1b\xae\x6e\x08\x15\x63\x8d\xbb\xd0\x25\xb1\xf9\x9c\x62\x88\x47\xd2\x76\xbe\x64\xc9\x29\x35\xed\x29\x8f\xf6\x0c\x14\x38\xa5\x86\xc1\x92\x09\x55\xb4\xfc\x16\xdd\xaf\x0e\xed\x75\x3e\x32\xbc\x82\x8d\x1f\xf9\x02\xcb\x7b\x5a\xbd\xe5\xfd\xf7\xd7\x58\xde\x53\x38\xb0\xfc\x88\xf0\x57\x5a\xde\xd3\xba\x54\x9f\xd3\x41\x1f\x81\x7c\x92\xfa\x9c\x1a\x2e\x15\x26\x6d\xa8\x3c\xb8\xd1\xd8\x53\xd1\xa5\xfa\x06\x5a\xba\x54\x38\x27\x4b\xf9\x44\x12\x53\xe5\x1d\x0f\x58\x0e\x84\x49\x9f\x50\x68\x2f\xc6\xb7\xd2\xe9\xf2\xfc\xc5\x5a\x95\xf9\x0b\x34\xba\x3c\x4f\x64\x1e\xe0\xb8\x3c\x67\x57\x94\xde\xfe\x07\xda\x8c\x97\xe7\x94\x09\x13\x99\xff\xd7\x55\x79\x8e\x15\x8e\x02\x73\xee\x07\xbe\xc0\x3d\x3d\xa9\xde\x3d\xfd\xf7\xd7\xa8\xca\x53\x38\x50\xc1\x88\xf0\x37\x39\xff\xc8\x3d\xa7\x54\xf0\x72\xef\xec\x08\xbe\xc0\x3b\xbb\xb5\x87\xc1\x57\xf4\x93\xcb\xf3\x01\x29\xb6\x3c\x4f\xf7\x45\x1f\x7a\xc1\xf3\xc2\x3f\xe7\x04\x43\x7e\xcf\x39\xc1\x94\xd0\x2d\x37\xd7\x90\xb4\x38\x60\xff\x5c\xa1\xf1\x6a\x18\x95\x24\x8e\x3e\x01\x3b\xec\x62\xad\x4d\x98\xcc\xe1\x14\x5e\xcb\x7c\x62\x4a\xd7\x70\xda\x21\xe2\x52\xe1\x34\x26\x06\x6e\x11\x28\xb4\x76\x76\x9d\xd8\x40\x4d\xb7\xee\xfb\x0b\x50\x1e\x5a\xba\x56\x1b\xee\xf3\xc9\xdc\x39\x9c\x3d\x00\x6a\x2b\xda\x8f\x68\x07\x82\x4d\x64\xfd\x07\xb8\x7e\x00\x69\x9b\x67\xcd\xf7\x23\xda\xa9\xab\x99\x39\x4c\xda\x32\x39\xde\x2b\xd8\xfa\xab\x9b\x0e\x80\x6d\xf3\xfa\xbc\x19\xd9\xa5\xaa\x1e\x7c\x57\xdb\x1d\xe7\x5f\xfe\xd9\xe9\x06\xe9\x83\xaa\x03\x0b\x35\x57\x52\x34\x54\xed\x73\x15\x9a\x3a\x2d\xc4\xc6\x3c\x53\xcf\x10\xa1\x3f\x70\xa4\xf1\x89\xe8\x24\xfa\xfa\x53\x77\x05\x24\x58\x50\x10\xed\x9e\xbc\xfc\x71\x12\x26\xdd\x0d\x4e\x50\x83\xbe\xfe\x14\x3a\x98\x41\xcf\x86\xa1\x93\x79\x9b\x97\x7d\xab\x35\xf0\x81\x23\x74\x62\x8d\xcc\xdf\x81\x90\x82\x3e\x6f\x04\xaf\x68\x59\x2b\x6d\xdb\x16\xb7\xed\x49\x3f\x83\x79\x89\x54\x0d\xf2\x3f\x04\xd0\x29\x26\x9f\x0d\x48\xed\x09\xbc\xf6\xbc\x87\x2c\x4e\x3d\x96\xfb\xb9\x09\x1c\xfb\xb5\xac\xe6\x76\x05\xa7\x40\x82\x3d\x71\x4b\x48\xbd\xd6\x3f\xdc\x41\xba\x9b\xd9\x1f\x3a\xc2\x73\xf8\x30\x80\x61\xff\xa6\x82\x5b\x4b\x6d\xde\x91\x82\xb8\x6d\x1d\xe3\xd0\x30\x92\x01\x62\xb2\x47\xbc\xcc\x5d\x3b\x1b\x3b\x0e\x31\xf4\x17\x63\xcf\x5c\xf0\x3a\xa9\x33\xda\xb1\x77\x2b\xf5\xc4\x73\x0b\x1b\xdc\xfd\x76\x57\x68\x2d\x50\x1c\x63\x7f\x9d\x36\x80\x8f\x63\x11\x39\x80\x0c\x5a\x55\x97\x97\x3a\x9f\x1f\x3c\x6c\xf9\xb6\xe9\x49\xd3\x86\x7c\x06\xbf\xbf\xa7\x5f\x83\xe7\x0c\x6d\x9c\x35\x37\x6b\x4f\xd9\xff\xfe\x45\x57\x52\x3c\xf8\xf3\xf8\xbe\xce\xf9\xc1\x44\xbf\xd6\x9f\x22\x74\x75\x6e\xcd\xef\x8b\x0a\x95\xff\x99\x0e\x7e\xbe\x9f\xc3\x74\x97\xf9\xfb\xe2\xfd\xe0\x86\xa2\x6a\xc6\x94\x9f\x60\x3c\xbe\xcd\xe8\xd5\x34\x50\xd8\x6e\x97\x1d\xc3\x9b\xfe\x35\xce\x3d\x7e\x86\x97\x07\x7d\x87\xc6\xb8\x0b\x6f\xb9\x77\x8f\xd3\x3f\xb1\x81\x7f\x74\x6b\xdb\xea\x70\x7b\x13\x6e\x2d\xf7\x5e\xaa\xa7\x9e\xf8\x46\x17\x0d\xff\x09\x00\x00\xff\xff\x0e\xc7\x2b\x9f\xa0\x1f\x00\x00") func templateClientTmplBytes() ([]byte, error) { return bindataRead( @@ -306,7 +306,7 @@ func templateClientTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/client.tmpl", size: 8107, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/client.tmpl", size: 8096, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -691,7 +691,7 @@ func templateDialectSqlDeleteTmpl() (*asset, error) { return a, nil } -var _templateDialectSqlEntqlTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5f\x4f\xdc\x48\x12\x7f\xb6\x3f\x45\x9d\x85\x22\x1b\x4d\x3c\xb9\xbc\x1d\x27\x1e\x08\x90\xcb\xdc\x2e\x2c\x1b\xc8\xe6\x01\x45\xab\xc6\x2e\x8f\x5b\xd8\x6d\xa7\xbb\x87\x08\x59\xfe\xee\xab\xae\xee\xb1\xdb\x66\x98\x80\x56\xfb\x00\x98\xae\x3f\x5d\xf5\xfb\x95\xab\xca\x5d\xb7\x3c\x0c\x4f\x9b\xf6\x51\xf2\x75\xa9\xe1\xfd\xbb\x7f\xff\xe7\x6d\x2b\x51\xa1\xd0\xf0\x91\x65\x78\xd7\x34\xf7\xb0\x12\x59\x0a\x27\x55\x05\xa4\xa4\xc0\xc8\xe5\x03\xe6\x69\x78\x53\x72\x05\xaa\xd9\xc8\x0c\x21\x6b\x72\x04\xae\xa0\xe2\x19\x0a\x85\x39\x6c\x44\x8e\x12\x74\x89\x70\xd2\xb2\xac\x44\x78\x9f\xbe\xdb\x4a\xa1\x68\x36\x22\x0f\xb9\x20\xf9\xaf\xab\xd3\xf3\xcb\xeb\x73\x28\x78\x85\xe0\xce\x64\xd3\x68\xc8\xb9\xc4\x4c\x37\xf2\x11\x9a\x02\xb4\x77\x99\x96\x88\x69\x78\xb8\xec\xfb\x30\xec\x3a\xc8\xb1\xe0\x02\x21\xca\x39\xab\x30\xd3\x4b\xf5\xbd\x5a\xa2\xd0\xdf\xab\x08\x9c\xc6\x41\x7b\xbf\x86\xa3\x63\xb8\x63\x0a\xe1\x20\x3d\x6d\x44\xc1\xd7\xe9\x15\xcb\xee\xd9\x1a\x8d\x52\xd7\x81\xc6\xba\xad\x98\x46\x88\x4a\x64\x39\xca\x08\x0e\xc8\x9c\xd7\x6d\x23\x35\xc4\x61\x10\x19\x4f\x4f\x8d\x97\xad\xc4\x9c\x67\x4c\x63\x14\x06\x5d\xf7\x16\x24\x13\x6b\x84\x03\x61\x6e\x3c\x48\x2f\x9b\x1c\x95\xf1\x14\x3c\xeb\xc0\x1c\x0b\xef\xc0\xf9\x41\x91\x53\x04\x41\xb4\xe6\xba\xdc\xdc\xa5\x59\x53\x2f\x0b\xc7\x8b\xc9\x70\xe9\x65\x1c\xbd\x4c\xcd\xfc\xac\x25\x6b\xcb\x7d\xfa\x16\xbc\x3d\x0a\x2a\x2b\xb1\x66\xcb\x82\x63\x95\x47\x61\x12\x86\xcb\x25\xd8\xb3\xff\x19\xdf\x50\x36\x55\xae\x80\x81\x44\x57\x4e\x4c\xf3\x46\x18\x1a\x47\x6b\x60\x1a\xe4\x46\x68\x5e\x63\x1a\x3e\x30\x39\x71\x70\x0c\xc5\x46\x64\x71\x02\x87\xdb\x78\xd3\x6b\x6b\xd5\x85\x01\xfd\x6f\xc0\x7d\x33\x13\x76\x84\xf5\x11\xd4\xec\x1e\xe3\xdb\x6f\xa3\xad\x39\x5f\x40\xd7\x41\x85\xc2\xa3\x24\xe9\x27\x84\xf1\xc5\x2e\xd2\x46\x0f\xea\xd6\x10\xc5\xa1\xef\xbf\x81\x7f\xb9\x91\x75\x61\x10\x04\xe6\xe1\xba\xc5\xec\x08\x26\x32\x73\x44\xf2\xe0\x86\xdd\x55\x78\x04\x73\xbe\x53\x3a\x5f\x90\xca\x69\x53\x6d\x6a\xa1\x76\x28\x39\x89\x55\x5b\x9d\x1d\x79\x11\x7c\x34\x44\x8c\xd7\x04\x37\x8f\x2d\x1e\x01\xd1\x93\x5a\x3f\xab\xb3\xd4\x1c\x9a\xe2\x53\xfa\x92\xd5\xc6\xa3\xf5\xe4\x6e\xdc\x71\xe1\x60\x49\x46\x4c\xe8\xc1\xc6\xfe\xb1\xbf\xed\x5d\x91\x55\x76\x9e\x23\x92\x50\x54\x44\x47\x7b\xab\xb4\xe4\x62\xed\x51\x32\x0b\xd9\xa3\xa1\x20\x0a\x84\xd5\x70\x24\x90\xc6\x8e\xf0\x0a\x3f\xb6\x23\xe8\xe6\x89\x17\x3b\xb2\x86\xbd\x09\x4f\x3c\xba\x74\xbd\x97\x71\x9b\x76\x3f\x79\x45\xf7\xbf\xf6\x9e\x10\x5d\x6e\xe7\xf9\x7a\x2b\x75\x05\x76\xb1\x51\xfa\x24\xcf\xcf\x63\xba\x91\xe0\xc4\x29\x9c\xc1\xc8\xb7\x31\xf7\xe8\xfe\x8c\x95\x57\x72\xd6\xf4\x33\x56\x94\xfb\xc8\xf3\x4a\x3c\xa0\x54\xae\xfc\x30\x5d\x29\x77\x30\x6a\x3c\x57\x9e\xd6\x80\xa4\x4f\x4a\x61\x52\xb0\xbc\x30\x8a\x17\xef\x2f\xa0\xef\x9f\xf1\x72\xf5\x8b\xe7\xa2\xeb\x00\x2b\x8a\xe0\xf6\x9b\xad\x90\xee\xb9\xdb\xed\x35\x9e\x2d\x90\x35\xe1\xef\x22\xf9\xc0\x73\xbe\xcd\xce\x3c\xcf\xca\x35\xd8\x55\xa3\x5b\xa4\xa9\x4c\x26\x92\x24\x0c\x9e\x50\xbc\x7d\x96\xa8\x37\x52\x00\xe1\x1d\xf6\xb1\x6d\x80\xc3\x18\x38\xc9\xcd\xe8\xfb\x21\x59\xab\x68\x98\xb1\x3c\xbf\xda\xca\xa0\x46\x5d\x36\x79\x6a\x0c\xcc\x50\xdd\xb4\x39\xd3\xb8\x70\x7f\xdf\x36\x02\x81\x89\x1c\xbe\x6f\x50\x3e\xc2\xdd\x86\x57\x39\x4a\x05\xbc\x6e\x2b\xac\xcd\x58\xa6\x31\xc8\x85\x46\x69\x1a\x72\x1a\x6a\x43\xf1\xec\xe6\x41\x6c\x9a\xa5\x7f\x79\x4c\x4d\x55\x51\x53\x4d\xaf\xb1\xa2\xe9\x9a\x24\xa1\x1d\x92\xfb\xba\xa0\x01\xc9\x45\xe3\x2a\xf8\x77\x13\xa1\x03\xcc\xca\x25\x66\xc8\x1f\xac\xc2\xf0\x3c\x58\x6d\xb5\xea\x8d\x1b\x06\xd6\xcd\x85\xfb\x77\xe2\xa9\xe0\x95\xb6\x7e\x5a\xc9\x85\xb6\xcd\xc0\x1c\x6d\xb5\xc2\x60\xb9\x9c\xc2\x3a\x20\x64\x21\x7f\x0e\x91\x34\x0c\x0c\x06\x10\x4f\x02\xee\x7b\x38\xf4\x33\xec\xfb\x64\xe2\x3d\x36\xee\x60\x37\x78\x06\xe3\x60\xe6\x2d\x1d\xae\x57\x70\x0c\xac\x6d\x51\xe4\xf3\x1b\x3d\x9d\x05\x85\x9b\x84\x81\x4b\xcc\xe6\x0a\xb6\xc8\xcc\x18\x75\x07\x43\x8e\x16\x40\xdd\x18\xd7\xd5\x23\x58\xb8\x14\x34\x76\x77\x9a\x66\xb2\x2d\xa2\x97\x67\x6e\x6f\x33\xb3\xd7\xe3\xa2\xef\x29\x51\x57\xf8\x6f\x26\x12\xfb\xce\xfa\x3e\xfb\x21\x97\xbf\x45\x52\x6d\x43\x18\x4a\xe6\xd5\xbc\xd4\x3b\x99\xa8\x5f\x81\xbd\x00\x5a\x86\xd2\xaf\x25\x4a\x7c\x0d\x03\x5e\xd0\x4f\x28\xd8\x95\xd7\xeb\x51\xaf\x47\x94\xa7\x26\xad\x6c\x1e\xb8\x79\x73\x19\xac\x51\xa0\xe4\x99\x0b\x90\x8b\x35\x64\xac\x65\x77\xbc\xe2\xfa\xd1\x5b\xc0\xa0\x68\xe4\xac\x6e\xd2\x30\xa0\xde\x32\x75\xad\xb4\xdc\x64\x9a\x82\x9a\xb2\x37\x84\x62\x81\x32\xb0\x70\xb4\x34\x13\x80\x23\xd9\x5b\x90\x6c\x8b\xb3\xae\x07\x64\x8a\x59\xfa\x89\xf5\x17\xb7\x8e\x86\x2b\xcb\x6b\x91\xfe\xbc\xad\x91\x62\xc0\x0b\x40\x49\xad\xc4\x5b\x2f\xd3\xf3\x07\x56\x5d\xc5\xfe\xc9\x6c\xbf\xa3\x79\xb0\x80\x76\x01\x2a\xf9\x2f\x79\xf8\xd7\x31\x08\x5e\x59\xa7\x81\x4a\xcd\xa8\x96\xb2\x91\x31\x4a\x99\xd0\x56\x60\x96\x02\x57\x47\xc6\x0d\x81\x67\x7b\xdc\x76\xf7\xa2\x5f\xd7\x34\xe6\x86\x56\xc7\xa9\x4f\x0f\x9d\x2e\x6e\x99\xca\x58\x65\xcd\x13\x88\xae\xa2\xad\xa6\x19\xad\xe4\x6a\xa5\xbe\x7c\x59\x9d\xb9\x01\x6b\xcd\x8f\x21\xfa\x83\x55\x1b\x24\xed\x61\x2a\x8e\x74\xac\xce\x76\x10\x32\x04\x49\x15\x33\x23\x87\xe7\x6e\x89\xfa\x09\x31\xab\xb3\x81\x9a\x31\x1c\x23\xb5\x2c\x39\xf2\xec\x2a\x17\xbf\x68\xc1\x4c\x46\x0c\xf7\xec\x83\x13\x84\x8b\xdd\xf0\xbe\x02\x5f\x1a\xee\x06\xe1\x22\x5d\xa9\x1b\x4e\x43\x66\x02\xaf\x39\xf3\x75\x69\x6b\xe1\x05\x34\xd2\xda\x7c\x78\x34\x1d\x86\x1e\xff\x7f\xfd\xdb\xe5\xdc\x9c\xc4\xbb\xec\xc9\x62\x3f\x9f\xb3\x35\x64\x20\xd5\x2e\xab\xd7\xf4\x42\x12\x34\x86\xc8\x57\xd2\x6c\x7d\xb8\xa9\x3a\x30\xbe\x9f\xf2\x5d\xf7\xee\x29\x82\x97\x55\x41\x31\x2f\x01\xbb\x60\x8f\x9f\xc0\x63\x39\xec\x58\xa1\xc9\x83\x89\x79\xe0\x39\xa2\x3b\x3f\x31\x15\x99\xe5\x6e\x1a\xac\xc5\x70\xb0\xf1\x50\x63\x1e\x42\xba\x81\xac\xc4\xec\xde\xb0\x64\x5b\x55\xc9\xec\x3c\xc8\xd7\x08\x93\xf5\x7c\x1f\x64\xde\x35\xf1\x0c\x10\x8b\xd8\x27\xa6\x4c\x26\xf1\x6c\xe3\x77\x18\xf8\xc9\xfd\x3c\xb7\xe8\x2b\xd7\x65\xf4\x4f\xa4\x08\x3f\xb8\x2e\xcd\x3c\xe1\x0f\x28\x20\x6b\x44\xce\xcd\xe4\x52\x10\x37\xba\x44\x39\x3a\x55\xc9\x4b\xd1\x30\x26\x0a\xd2\x74\x1c\xc6\xe9\xd3\x55\x7c\x1f\x64\x26\xd9\x39\x6c\x8b\xf1\x33\xe8\xab\x64\xed\x47\x33\x18\xf6\x4c\x87\xc0\xcc\xbd\x3f\x17\xd0\xd2\xce\x4a\xf5\x65\xc3\x72\x1f\x56\x6d\xac\x12\xfb\x05\x41\x2d\x3e\x79\x5a\x99\x5e\x8d\x8e\x8f\x7f\x05\x00\x00\xff\xff\x8b\xe0\xfd\x2a\x58\x13\x00\x00") +var _templateDialectSqlEntqlTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5f\x4f\xdc\x48\x12\x7f\xb6\x3f\x45\x9d\x85\x22\x1b\x4d\x3c\xb9\xbc\x1d\x27\x1e\x08\x90\xcb\xdc\x2e\x2c\x1b\xc8\xe6\x01\x45\xab\xc6\x2e\x8f\x5b\xd8\x6d\xa7\xbb\x87\x08\x59\xfe\xee\xab\xae\xee\xb1\xdb\x66\x98\x80\x56\xfb\x00\x98\xae\x3f\x5d\xf5\xfb\x95\xab\xca\x5d\xb7\x3c\x0c\x4f\x9b\xf6\x51\xf2\x75\xa9\xe1\xfd\xbb\x7f\xff\xe7\x6d\x2b\x51\xa1\xd0\xf0\x91\x65\x78\xd7\x34\xf7\xb0\x12\x59\x0a\x27\x55\x05\xa4\xa4\xc0\xc8\xe5\x03\xe6\x69\x78\x53\x72\x05\xaa\xd9\xc8\x0c\x21\x6b\x72\x04\xae\xa0\xe2\x19\x0a\x85\x39\x6c\x44\x8e\x12\x74\x89\x70\xd2\xb2\xac\x44\x78\x9f\xbe\xdb\x4a\xa1\x68\x36\x22\x0f\xb9\x20\xf9\xaf\xab\xd3\xf3\xcb\xeb\x73\x28\x78\x85\xe0\xce\x64\xd3\x68\xc8\xb9\xc4\x4c\x37\xf2\x11\x9a\x02\xb4\x77\x99\x96\x88\x69\x78\xb8\xec\xfb\x30\xec\x3a\xc8\xb1\xe0\x02\x21\xca\x39\xab\x30\xd3\x4b\xf5\xbd\x5a\xa2\xd0\xdf\xab\x08\x9c\xc6\x41\x7b\xbf\x86\xa3\x63\xb8\x63\x0a\xe1\x20\x3d\x6d\x44\xc1\xd7\xe9\x15\xcb\xee\xd9\x1a\x8d\x52\xd7\x81\xc6\xba\xad\x98\x46\x88\x4a\x64\x39\xca\x08\x0e\xc8\x9c\xd7\x6d\x23\x35\xc4\x61\x10\x19\x4f\x4f\x8d\x97\xad\xc4\x9c\x67\x4c\x63\x14\x06\x5d\xf7\x16\x24\x13\x6b\x84\x03\x61\x6e\x3c\x48\x2f\x9b\x1c\x95\xf1\x14\x3c\xeb\xc0\x1c\x0b\xef\xc0\xf9\x41\x91\x53\x04\x41\x84\x42\xaf\x9b\x94\x37\x26\xad\xa5\x97\x66\xb4\x47\x66\x7e\xd6\x92\xb5\xe5\x13\x25\x8b\xcd\xfc\x54\x65\x25\xd6\x6c\x59\x70\xac\xf2\x28\x4c\xc2\x70\xb9\x04\x7b\xf6\x3f\xe3\x05\xca\xa6\xca\x15\x30\x90\xe8\x4a\x84\x69\xde\x08\x43\xcd\x68\x0d\x4c\x83\xdc\x08\xcd\x6b\x4c\xc3\x07\x26\x27\x0e\x8e\xa1\xd8\x88\x2c\x4e\xe0\x70\x1b\x59\x7a\x6d\xad\xba\x30\xa0\xff\x0d\x60\x6f\x66\xc2\x8e\xf0\x3b\x82\x9a\xdd\x63\x7c\xfb\x6d\xb4\x35\xe7\x0b\xe8\x3a\xa8\x50\x78\x30\x27\xfd\x84\x04\xbe\xd8\x45\xc4\xe8\x41\xdd\x1a\xf0\x39\xf4\xfd\x37\xf0\x2f\x37\xb2\x2e\x0c\x82\xc0\x3c\x5c\xb7\x98\x1d\xc1\x44\x66\x8e\x48\x1e\xdc\xb0\xbb\x0a\x8f\x60\xce\x61\x4a\xe7\x0b\x52\x39\x6d\xaa\x4d\x2d\xd4\x0e\x25\x27\xb1\x6a\xab\xb3\x23\x2f\x82\x8f\x86\x88\xf1\x9a\xe0\xe6\xb1\xc5\x23\x20\x7a\x52\xeb\x67\x75\x96\x9a\x43\x53\x50\x4a\x5f\xb2\xda\x78\xb4\x9e\xdc\x8d\x3b\x2e\x1c\x2c\xc9\x88\x09\x3d\xd8\xd8\x3f\xf6\xb7\xbd\x2b\xb2\xca\xce\x73\x44\x12\x8a\x8a\xe8\x68\x6f\x95\x96\x5c\xac\x3d\x4a\x66\x21\x7b\x34\x14\x44\x81\xb0\x1a\x8e\x04\xd2\xd8\x11\x5e\xe1\xc7\x76\x04\xdd\x3c\xf1\x62\x47\xd6\xb0\x37\xe1\x89\x47\x97\xae\xf7\x82\x6d\xd3\xee\x27\xaf\xdd\xfe\x57\xd9\x13\xa2\xcb\xed\x3c\x5f\x6f\xa5\xae\xc0\x2e\x36\x4a\x9f\xe4\xf9\x79\x4c\x37\x12\x9c\x38\x85\x33\x18\xf9\x36\xe6\x1e\xdd\x9f\xb1\xf2\x4a\xce\x9a\x7e\xc6\x8a\x72\x1f\x79\x5e\x89\x07\x94\xca\x95\x1f\xa6\x2b\xe5\x0e\x46\x8d\xe7\xca\xd3\x1a\x90\xf4\x49\x29\x4c\x0a\x96\x17\x46\xf1\xe2\xfd\x05\xf4\xfd\x33\x5e\xae\x7e\xf1\x5c\x74\x1d\x60\x45\x11\xdc\x7e\xb3\x15\xd2\x3d\x77\xbb\xbd\xc6\xb3\x05\xb2\x26\xfc\x5d\x24\x1f\x78\xce\xb7\xd9\x99\xe7\x59\xb9\x06\xbb\x6a\x74\x8b\x34\x95\xc9\x44\x92\x84\xc1\x13\x8a\xb7\xcf\x12\xf5\x46\x0a\x20\xbc\xc3\x3e\xb6\x0d\x70\x68\xed\x27\xb9\x19\x67\x3f\x24\x6b\x15\x0d\x28\x96\xe7\x57\x5b\x19\xd4\xa8\xcb\x26\x4f\x8d\x81\x19\x94\x9b\x36\x67\x1a\x17\xee\xef\xdb\x46\x20\x30\x91\xc3\xf7\x0d\xca\x47\xb8\xdb\xf0\x2a\x47\xa9\x80\xd7\x6d\x85\xb5\x19\xb5\x34\xda\xb8\xd0\x28\x0b\x96\x61\x1a\x6a\x43\xf1\xec\xe6\x41\x6c\x9a\xa5\x7f\x79\x4c\x4d\x55\x51\x53\x4d\xaf\xb1\xa2\x89\x99\x24\xa1\x1d\x7c\xfb\xba\xa0\x01\xc9\x45\xe3\x2a\xf8\x77\x13\xa1\x03\xcc\xca\x25\x66\xc8\x1f\xac\xc2\xf0\x3c\x58\x6d\xb5\xea\x8d\x1b\x06\xd6\xcd\x85\xfb\x77\xe2\xa9\xe0\x95\xb6\x7e\x5a\xc9\x85\xb6\xcd\xc0\x1c\x6d\xb5\xc2\x60\xb9\x9c\xc2\x3a\x20\x64\x21\x7f\x0e\x91\x34\x0c\x0c\x06\x10\x4f\x02\xee\x7b\x38\xf4\x33\xec\xfb\x64\xe2\x3d\x36\xee\x60\x37\x78\x06\xe3\x60\xe6\x2d\x1d\xae\x57\x70\x0c\xac\x6d\x51\xe4\xf3\x1b\x3d\x9d\x05\x85\x9b\x84\x81\x4b\xcc\xe6\x0a\xb6\xc8\xcc\x18\x75\x07\x43\x8e\x16\x40\xdd\x18\xd7\xd5\x23\x58\xb8\x14\x34\x76\x1f\x9a\x66\xb2\x2d\xa2\x97\x67\x6e\x6f\x33\xb3\xd7\xe3\xa2\xef\x29\x51\x57\xf8\x6f\x26\x12\xfb\xce\xfa\x3e\xfb\x21\x97\xbf\x45\x52\x6d\x43\x18\x4a\xe6\xd5\xbc\xd4\x3b\x99\xa8\x5f\x81\xbd\x00\xda\x80\xd2\xaf\x25\x4a\x7c\x0d\x03\x5e\xd0\x4f\x28\xd8\x95\xd7\xeb\x51\xaf\x47\x94\xa7\x26\xad\x6c\x1e\xb8\x79\x73\x19\xac\x51\xa0\xe4\x99\x0b\x90\x8b\x35\x64\xac\x65\x77\xbc\xe2\xfa\xd1\x5b\xc0\xa0\x68\xe4\xac\x6e\xd2\x30\xa0\xde\x32\x75\xad\xb4\xdc\x64\x9a\x82\x9a\xb2\x37\x84\x62\x81\x32\xb0\x70\xb4\x34\x13\x80\x23\xd9\x5b\x90\x6c\x8b\xb3\xae\x07\x64\x8a\x59\xfa\x89\xf5\x17\xb7\x8e\x86\x2b\xcb\x6b\x91\xfe\xbc\xad\x91\x62\xc0\x0b\x40\x49\xad\xc4\x5b\x2f\xd3\xf3\x07\x56\x5d\xc5\xfe\xc9\x6c\xbf\xa3\x79\xb0\x80\x76\x01\x2a\xf9\x2f\x79\xf8\xd7\x31\x08\x5e\x59\xa7\x81\x4a\xcd\xa8\x96\xb2\x91\x31\x4a\x99\xd0\x56\x60\x96\x02\x57\x47\xc6\x0d\x81\x67\x7b\xdc\x76\xf7\xa2\x5f\xd7\x34\xe6\x86\x56\xc7\xa9\x4f\x0f\x9d\x2e\x6e\x99\xca\x58\x65\xcd\x13\x88\xae\xa2\xad\xa6\x19\xad\xe4\x6a\xa5\xbe\x7c\x59\x9d\xb9\x01\x6b\xcd\x8f\x21\xfa\x83\x55\x1b\x24\xed\x61\x2a\x8e\x74\xac\xce\x76\x10\x32\x04\x49\x15\x33\x23\x87\xe7\x6e\x89\xfa\x09\x31\xab\xb3\x81\x9a\x31\x1c\x23\xb5\x2c\x39\xf2\xec\x2a\x17\xbf\x68\xc1\x4c\x46\x0c\xf7\xec\x83\x13\x84\x8b\xdd\xf0\xbe\x02\x5f\x1a\xee\x06\xe1\x22\x5d\xa9\x1b\x4e\x43\x66\x02\xaf\x39\xf3\x75\x69\x6b\xe1\x05\x34\xd2\xda\x7c\x78\x34\x1d\x86\x1e\xff\x7f\xfd\xdb\xe5\xdc\x9c\xc4\xbb\xec\xc9\x62\x3f\x9f\xb3\x35\x64\x20\xd5\x2e\xab\xd7\xf4\x42\x12\x34\x86\xc8\x57\xd2\x6c\x7d\xb8\xa9\x3a\x30\xbe\x9f\xf2\x5d\xf7\xee\x29\x82\x97\x55\x41\x31\x2f\x01\xbb\x60\x8f\x9f\xb5\x63\x39\xec\x58\xa1\xc9\x83\x89\x79\xe0\x39\xa2\x3b\x3f\x31\x15\x99\xe5\x6e\x1a\xac\xc5\x70\xb0\xf1\x50\x63\x1e\x42\xba\x81\xac\xc4\xec\xde\xb0\x64\x5b\x55\xc9\xec\x3c\xc8\xd7\x08\x93\xf5\x7c\x1f\x64\xde\x35\xf1\x0c\x10\x8b\xd8\x27\xa6\x4c\x26\xf1\x6c\xe3\x77\x18\xf8\xc9\xfd\x3c\xb7\xe8\x2b\xd7\x65\xf4\x4f\xa4\x08\x3f\xb8\x2e\xcd\x3c\xe1\x0f\x28\x20\x6b\x44\xce\xcd\xe4\x52\x10\x37\xba\x44\x39\x3a\x55\xc9\x4b\xd1\x30\x26\x0a\xd2\x74\x1c\xc6\xe9\xd3\x55\x7c\x1f\x64\x26\xd9\x39\x6c\x8b\xf1\x33\xe8\xab\x64\xed\x47\x33\x18\xf6\x4c\x87\xc0\xcc\xbd\x3f\x17\xd0\xd2\xce\x4a\xf5\x65\xc3\x72\x1f\x56\x6d\xac\x12\xfb\x05\x41\x2d\x3e\x79\x5a\x99\x5e\x8d\x8e\x8f\x7f\x05\x00\x00\xff\xff\xed\x18\xca\x57\x2c\x13\x00\x00") func templateDialectSqlEntqlTmplBytes() ([]byte, error) { return bindataRead( @@ -706,7 +706,7 @@ func templateDialectSqlEntqlTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/dialect/sql/entql.tmpl", size: 4952, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/dialect/sql/entql.tmpl", size: 4908, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -731,7 +731,7 @@ func templateDialectSqlErrorsTmpl() (*asset, error) { return a, nil } -var _templateDialectSqlFeatureSchemaconfigTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x58\x5d\x6b\x22\x49\x17\xbe\xb6\x7f\xc5\xa1\x11\x5e\x1d\x62\x39\x33\x77\x6f\x20\x0b\xd9\x90\x40\x98\x9d\xcc\xb2\x19\x76\x2f\x87\x4a\xd5\x51\x8b\xb4\x55\x3d\x55\xc7\x24\x22\xfd\xdf\x97\xfa\x68\xed\x56\xdb\x24\x12\xb2\x0b\x7b\xa7\xd6\xa9\xf3\xf1\x9c\xaf\xa7\x5c\xad\xc6\x1f\xb2\x0b\x53\x2e\xad\x9a\xce\x08\x3e\x7f\xfc\xf4\xff\x51\x69\xd1\xa1\x26\xb8\xe2\x02\xef\x8c\xb9\x87\x6b\x2d\x18\x9c\x17\x05\x04\x21\x07\xfe\xdc\x3e\xa0\x64\xd9\xf7\x99\x72\xe0\xcc\xc2\x0a\x04\x61\x24\x82\x72\x50\x28\x81\xda\xa1\x84\x85\x96\x68\x81\x66\x08\xe7\x25\x17\x33\x84\xcf\xec\x63\x7d\x0a\x13\xb3\xd0\x32\x53\x3a\x9c\xff\x76\x7d\x71\x79\x73\x7b\x09\x13\x55\x20\xa4\xdf\xac\x31\x04\x52\x59\x14\x64\xec\x12\xcc\x04\xa8\x61\x8c\x2c\x22\xcb\x3e\x8c\xab\x2a\xcb\x56\xab\x11\x48\x9c\x28\x8d\x90\x4b\xc5\x0b\x14\x34\x76\x3f\x8b\xb1\xd2\x84\x56\xf3\x62\xec\xc4\x0c\xe7\x5c\x18\x3d\x51\xd3\x1c\x46\x55\x95\xad\x56\xf0\xa8\x68\x06\xf8\x44\xa8\x25\xf4\x21\xff\x9d\x8b\x7b\x3e\xc5\x1c\xf2\xfa\x5a\x94\xec\xad\x56\x40\x38\x2f\x0b\x4e\x08\xf9\x0c\xb9\x44\x9b\x03\x83\xa8\xc4\x5f\xae\xaa\x4c\xcd\x4b\x63\x09\x72\x61\x34\xe1\x13\xe5\x59\x36\x1e\xc3\x6d\xb0\x7a\x11\xac\x82\xc5\x84\xaa\x03\x5e\x04\xfd\xa4\x1e\x10\xa2\x67\xa0\xf9\x1c\x1d\x4c\x8c\x05\x5e\x14\x40\xfc\xae\x40\xe7\x55\xd0\x8c\x13\x08\xae\xe1\x0e\xa1\xe4\xce\x83\xca\x09\xec\x42\x93\x9a\x23\xcb\x68\x59\x62\xdb\x8c\x23\xbb\x10\x04\x2b\xef\xf6\x08\x2c\xd7\x53\x84\xbe\x86\xd3\x33\xe8\xb3\x1b\x23\xd1\x79\x6f\x7b\x3e\xa6\xbe\x66\x37\x7c\x8e\x50\x55\xfe\x92\xd2\x53\x18\x8f\xa1\xfd\x7b\xf0\x83\x05\xf1\xb5\x2e\x0c\xba\x34\xbb\x94\xd3\x5a\x59\x38\x56\x13\xe0\x1e\x48\x64\x5f\x3f\x7f\x85\x81\x36\xe4\x3f\x5f\xeb\x07\xb4\x0e\x87\x49\xb0\x6d\xd7\x7f\x41\x76\x1b\x3c\xbe\x52\x58\xc8\x03\xbe\x8c\xa2\x70\xfd\xed\x97\xf8\xf5\xfb\xb2\xc4\x5d\x6f\x83\x3f\x29\x31\xed\x2f\x8d\xcf\x55\x16\xd1\x8b\x09\xb8\xa0\xa7\x2f\xb8\x4c\xe8\xad\xaa\x9d\xf4\x5d\x59\x33\xbf\x88\xb9\x05\x8b\xb4\xb0\xda\x01\xdf\x46\xde\x58\x94\xa0\xb4\x53\x12\x81\x43\x2a\x85\x13\x30\x16\x70\x5e\xd2\xd2\x43\x44\x33\xb4\xbe\x47\xf4\xff\x08\x8c\x46\x96\x4d\x16\x5a\x74\x59\x1a\x08\x7a\xaa\xd5\xb0\xf4\xdb\xb0\x6d\x74\x95\xf5\x62\x55\x9f\xc0\x0f\x9f\x18\x41\x4f\xec\x4f\x5e\x2c\x70\xd0\x8c\x6b\x55\x0d\xd9\xa0\x79\x6f\x98\xf5\x62\x14\x10\x6f\x67\x31\xe2\x1b\x7c\x6c\x4a\xed\x06\xac\xf1\xb1\x76\x28\xb6\x8f\xef\xd3\xa9\x7a\x40\xdd\x76\x8b\x13\xf9\x7e\x97\x29\xbe\xfd\x7a\x07\x25\xb7\x7e\xca\x6c\x45\x78\x92\x7c\x6a\x69\x1c\x6e\x4b\xf9\xc8\x37\x21\x84\x93\xbf\x14\xcd\x62\xec\x51\xf1\x09\xb4\x31\xa8\x15\x0f\xb3\x34\x32\x52\x25\x64\x7e\x04\xc2\xb9\x94\xa4\x8c\xe6\x05\xc4\x5e\x76\x70\xb7\x0c\xe1\x35\x67\x07\x4c\x90\xd3\xc2\x22\x83\x30\x78\x3a\xe7\x4e\xd0\x30\xe6\x52\xaa\xa8\x73\xcf\x00\xaa\x9b\xa6\xcf\xae\xa2\xce\x4b\xed\xeb\x57\x42\xee\x35\xb4\xe5\x43\x1d\xe7\xbe\xe4\x59\x84\x83\xa5\x61\x05\x55\xb5\x1e\x72\x79\xab\xbc\x0f\xc4\x37\xf1\xad\xe6\x80\x4c\x08\x4f\x34\xe7\xc6\x33\x71\x45\xd9\x71\x54\xf0\x16\x31\xb9\x66\xd1\x34\xf3\xbd\x37\x96\xd1\x9e\x60\xc8\x94\xa3\x02\x1f\xb0\x88\xdb\xc7\x4f\xd0\x50\x93\xa8\xd1\x72\x42\x99\xe2\x63\x53\x13\x76\xcb\xcb\x02\x34\xa5\xd7\xbe\x1d\xe1\x31\x01\xbe\xc1\x16\x08\x4a\x9e\xd9\x03\xbd\xde\xee\x26\x38\x83\xba\x32\x58\x0b\xd9\xa8\xf0\x3c\x59\xc7\x78\xe6\xdd\x29\xcc\xe3\xc6\xab\x2d\x9f\xc8\xc0\x1d\xc6\x9b\xc9\xbc\xd2\x64\xc0\xb7\xaf\x29\x3d\xd2\x1e\x2f\xef\x47\xe8\xf7\x2d\xe5\x83\xce\x34\x0f\xe1\x5b\x80\xda\x77\x73\xaf\xee\x67\xaf\x62\x20\xe0\x43\xea\xd6\x78\xd6\x13\xcc\xb5\xa3\x73\xad\x72\xe9\xf5\x3c\xdc\xd5\x81\x1e\xd8\x9f\x71\x89\x05\x12\x8e\x5d\x89\xa2\x23\xdd\x9b\xdd\xdf\xbc\xb7\xe7\x42\xff\xa5\x36\x17\xa5\xe4\xef\x6d\x53\x58\x7c\xc6\xe6\x16\x1d\xba\x96\xa8\x29\x87\xfc\x87\xbf\x92\x43\x7e\x7b\xaf\xca\x34\x7b\x73\x20\xbb\xc0\xcd\x76\x7d\xb1\xb7\x6c\x7b\x09\xbf\xc4\xf3\x9f\x0b\xb4\xcb\x37\x01\x8b\xbd\xce\x24\xf2\x29\xda\xc2\x70\xa9\xf4\xf4\x58\xe0\x02\x4d\xca\x9f\x83\x4a\xe2\x04\xe5\x74\x6f\x76\x8e\x82\xec\x80\xbe\x5a\x5b\xe2\x71\xec\x56\x98\x12\x83\x97\x9b\xa3\xbb\x85\x2a\x3c\x71\x3f\x3d\xf3\xcd\x2e\x78\xb1\x96\xfb\x35\x9d\xac\x45\x2d\x0a\x54\x0f\x51\x76\xfd\x79\xad\x60\x2d\xa6\x3c\x26\x5e\x26\xc7\x84\x47\xcd\xbf\x6b\xcd\x01\xb5\xc4\x09\xa3\xf4\x59\x88\x7d\x43\xb1\x5f\x3d\x7b\x83\xe5\x34\xc5\x7c\xac\x6d\xba\x98\xad\x69\x6b\x1f\xd9\xb7\x47\x7d\xf5\xa5\x41\x66\xeb\x6b\x81\x35\xb7\xe4\xb1\x70\x98\x2e\x79\x9e\xdb\xe2\xbf\x1b\xbe\xbb\xa1\xbb\x4d\x5d\xa5\x55\x9a\xda\x7e\x0c\x6a\x80\x77\xa8\xf2\xda\xd8\x21\x55\x51\xc9\x0e\x89\x3e\xc8\x81\x7b\x1b\x88\xab\x2a\xad\x06\x38\x0b\x6c\x7b\x9d\xc1\xaa\x6a\x4d\x5b\xe6\x0f\x93\xed\x23\xca\x71\x4f\x19\x8e\xde\xa5\xd8\x62\x0b\xfa\x67\xcf\xbb\x95\xdc\x51\xd0\xee\xd6\x64\x78\x3e\x25\x3f\x1b\x93\x37\xe5\xd6\xbf\x0b\x1a\xeb\xbd\x83\x5e\x0b\x7a\x3a\x39\x68\x7b\xd8\xfd\x3a\xda\xa2\x5c\x07\x27\x33\x16\xe1\x85\xfe\x7e\x19\x7e\x4d\x46\xe8\x53\xca\xc3\xe0\xc5\x59\xf0\xb0\xbc\x21\xc2\x35\x3e\xe1\x7d\xd2\xb8\x39\x3c\x16\xf0\x92\xd3\xec\x0d\xa8\x69\x8b\x4e\x9d\xc6\x2a\x4d\x79\xf9\xa3\x23\x9c\x83\x4b\x2c\x55\x03\x61\x79\x70\x85\x8d\x5e\x17\xec\xc4\x9a\xf9\x7f\x20\xd8\xd2\xa2\x54\xc2\x33\xb4\xb0\xb8\x67\xbc\xf3\x79\xb5\xdf\x9f\xad\xfb\x07\x78\xcf\x2b\xdd\xf0\x13\xf3\xdf\xe0\xca\x5b\x3f\x36\x4f\x3b\x9e\x47\xcd\xbf\x5f\x5c\xfd\x67\xc3\x60\x38\xfc\x07\x4a\x7f\x8f\xbe\xd1\x33\xf4\xcd\x5f\x61\xdf\xcd\x66\xf5\xec\x0c\xb9\x6d\x12\xf4\x1c\x49\xda\xcb\x91\x3a\x29\x52\x17\x43\xea\x22\x48\xc7\xf3\xa3\x2d\x7a\xf4\x4a\x76\xd4\xb1\xf5\x22\x7e\x1e\xcd\x03\x08\x6e\x78\x50\x23\x97\x7f\x07\x00\x00\xff\xff\x39\xd9\x93\x5e\x46\x17\x00\x00") +var _templateDialectSqlFeatureSchemaconfigTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x58\x5d\x6b\x22\x49\x17\xbe\xb6\x7f\xc5\xa1\x11\x5e\x1d\x62\x39\x33\x77\x6f\x20\x0b\xd9\x90\x40\x98\x9d\xcc\xb2\x19\x76\x2f\x87\x4a\xd5\x51\x8b\xb4\x55\x3d\x55\xc7\x24\x22\xfd\xdf\x97\xfa\x68\xed\x56\xdb\x24\x12\xb2\x0b\x7b\xa7\xd6\xa9\xf3\xf1\x9c\xaf\xa7\x5c\xad\xc6\x1f\xb2\x0b\x53\x2e\xad\x9a\xce\x08\x3e\x7f\xfc\xf4\xff\x51\x69\xd1\xa1\x26\xb8\xe2\x02\xef\x8c\xb9\x87\x6b\x2d\x18\x9c\x17\x05\x04\x21\x07\xfe\xdc\x3e\xa0\x64\xd9\xf7\x99\x72\xe0\xcc\xc2\x0a\x04\x61\x24\x82\x72\x50\x28\x81\xda\xa1\x84\x85\x96\x68\x81\x66\x08\xe7\x25\x17\x33\x84\xcf\xec\x63\x7d\x0a\x13\xb3\xd0\x32\x53\x3a\x9c\xff\x76\x7d\x71\x79\x73\x7b\x09\x13\x55\x20\xa4\xdf\xac\x31\x04\x52\x59\x14\x64\xec\x12\xcc\x04\xa8\x61\x8c\x2c\x22\xcb\x3e\x8c\xab\x2a\xcb\x56\xab\x11\x48\x9c\x28\x8d\x90\x4b\xc5\x0b\x14\x34\x76\x3f\x8b\xb1\xd2\x84\x56\xf3\x62\xec\xc4\x0c\xe7\x5c\x18\x3d\x51\xd3\x1c\x46\x55\x95\xad\x56\xf0\xa8\x68\x06\xf8\x44\xa8\x25\xf4\x21\xff\x9d\x8b\x7b\x3e\xc5\x1c\xf2\xfa\x5a\x94\xec\xad\x56\x40\x38\x2f\x0b\x4e\x08\xf9\x0c\xb9\x44\x9b\x03\x83\xa8\xc4\x5f\xae\xaa\x4c\xcd\x4b\x63\x09\x72\x61\x34\xe1\x13\xe5\x59\x36\x1e\xc3\x6d\xb0\x7a\x11\xac\x82\xc5\x84\xaa\x03\x5e\x04\xfd\xa4\x1e\x10\xa2\x67\xa0\xf9\x1c\x1d\x4c\x8c\x05\x5e\x14\x40\xfc\xae\x40\xe7\x55\xd0\x8c\x13\x08\xae\xe1\x0e\xa1\xe4\xce\x83\xca\x09\xec\x42\x93\x9a\x23\xcb\x68\x59\x62\xdb\x8c\x23\xbb\x10\x04\x2b\xef\xf6\x08\x2c\xd7\x53\x84\xbe\x86\xd3\x33\xe8\xb3\x1b\x23\xd1\x79\x6f\x7b\x3e\xa6\xbe\x66\x37\x7c\x8e\x50\x55\xfe\x92\xd2\x53\x18\x8f\xa1\xfd\x7b\xf0\x83\x05\xf1\xb5\x2e\x0c\xba\x34\xbb\x94\xd3\x5a\x59\x38\x56\x13\xe0\x1e\x48\x64\x5f\x3f\x7f\x85\x81\x36\xe4\x3f\x5f\xeb\x07\xb4\x0e\x87\x49\xb0\x6d\xd7\x7f\x41\x76\x1b\x3c\xbe\x52\x58\xc8\x03\xbe\x8c\xa2\x70\xfd\xed\x97\xf8\xf5\xfb\xb2\xc4\x5d\x6f\x83\x3f\x29\x31\xed\x2f\x8d\xcf\x55\x16\xd1\x8b\x09\xb8\xa0\xa7\x2f\xb8\x4c\xe8\xad\xaa\x9d\xf4\x5d\x59\x33\xbf\x88\xb9\x05\x8b\xb4\xb0\xda\x01\xdf\x46\xde\x58\x94\xa0\xb4\x53\x12\x81\x43\x2a\x85\x13\x30\x16\x70\x5e\xd2\xd2\x43\x44\x33\xb4\xbe\x47\xf4\xff\x08\x8c\x46\x96\x4d\x16\x5a\x74\x59\x1a\x08\x7a\xaa\xd5\xb0\xf4\xdb\xb0\x6d\x74\x95\xf5\x62\x55\x9f\xc0\x0f\x9f\x18\x41\x4f\xec\x4f\x5e\x2c\x70\xd0\x8c\x6b\x55\x0d\xd9\xa0\x79\x6f\x98\xf5\x62\x14\x10\x6f\x67\x31\xe2\x1b\x7c\x6c\x4a\xed\x06\xac\xf1\xb1\x76\x28\xb6\x8f\xef\xd3\xa9\x7a\x40\xdd\x76\x8b\x13\xf9\x7e\x97\x29\xbe\xfd\x7a\x07\x25\xb7\x7e\xca\x6c\x45\x78\x92\x7c\x6a\x69\x1c\x6e\x4b\xf9\xc8\x37\x21\x84\x93\xbf\x14\xcd\x62\xec\x51\xf1\x09\xb4\x31\xa8\x15\x0f\xb3\x34\x32\x52\x25\x64\x7e\x04\xc2\xb9\x94\xa4\x8c\xe6\x05\xc4\x5e\x76\x70\xb7\x0c\xe1\x35\x67\x07\x4c\x90\xd3\xc2\x22\x83\x30\x78\x3a\xe7\x4e\xd0\x30\xe6\x52\xaa\xa8\x73\xcf\x00\xaa\x9b\xa6\xcf\xae\xa2\xce\x4b\xed\xeb\x57\x42\xee\x35\xb4\xe5\x43\x1d\xe7\xbe\xe4\x59\x84\x83\xa5\x61\x05\x55\xb5\x1e\x72\x79\xab\xbc\x0f\xc4\x37\xf1\xad\xe6\x80\x4c\x08\x4f\x34\xe7\xc6\x33\x71\x45\xd9\x71\x54\xf0\x16\x31\xb9\x66\xd1\x34\xf3\xbd\x37\x96\xd1\x9e\x60\xc8\x94\xa3\x02\x1f\xb0\x88\xdb\xc7\x4f\xd0\x50\x93\xa8\xd1\x72\x42\x99\xe2\x63\x53\x13\x76\xcb\xcb\x02\x34\xa5\xd7\xbe\x1d\xe1\x31\x01\xbe\xc1\x16\x08\x4a\x9e\xd9\x03\xbd\xde\xee\x26\x38\x83\xba\x32\x58\x0b\xd9\xa8\xf0\x3c\x59\xc7\x78\xe6\xdd\x29\xcc\xe3\xc6\xab\x2d\x9f\xc8\xc0\x1d\xc6\x9b\xc9\xbc\xd2\x64\xc0\xb7\xaf\x29\x3d\xd2\x1e\x2f\xef\x47\xe8\xf7\x2d\xe5\x83\xce\x34\x0f\xe1\x5b\x80\xda\x77\x73\xaf\xee\x67\xaf\x62\x20\xe0\x43\xea\xd6\x78\xd6\x13\xcc\xb5\xa3\x73\xad\x72\xe9\xf5\x3c\xdc\xd5\x81\x1e\xd8\x9f\x71\x89\x05\x12\x8e\x5d\x89\xa2\x23\xdd\x9b\xdd\xdf\xbc\xb7\xe7\x42\xff\xa5\x36\x17\xa5\xe4\xef\x6d\x53\x58\x7c\xc6\xe6\x16\x1d\xba\x96\xa8\x29\x87\xfc\x87\xbf\x92\x43\x7e\x7b\xaf\xca\x34\x7b\x73\x20\xbb\xc0\xcd\x76\x7d\xb1\xb7\x6c\x7b\x09\xbf\xc4\xf3\x9f\x0b\xb4\xcb\x37\x01\x8b\xbd\xce\x24\xf2\x29\xda\xc2\x70\xa9\xf4\xf4\x58\xe0\x02\x4d\xca\x9f\x83\x4a\xe2\x04\xe5\x74\x6f\x76\x8e\x82\xec\x80\xbe\x5a\x5b\xe2\x71\xec\x56\x98\x12\x83\x97\x9b\xa3\xbb\x85\x2a\x3c\x71\x3f\x3d\xf3\xcd\x2e\x78\xb1\x96\xfb\x35\x9d\xac\x45\x2d\x0a\x54\x0f\x51\x76\xfd\x79\xad\x60\x2d\xa6\x3c\x26\x5e\x26\xc7\x84\x47\xcd\xbf\x6b\xcd\x01\xb5\xc4\x09\xa3\xf4\x59\x88\x7d\x43\xb1\x5f\x3d\x7b\x83\xe5\x34\xc5\x7c\xac\x6d\xba\x98\xad\x69\x6b\x1f\xd9\xb7\x47\x7d\xf5\xa5\x41\x66\xeb\x6b\x81\x35\xb7\xe4\xb1\x70\x98\x2e\x79\x9e\xdb\xe2\xbf\x1b\xbe\xbb\xa1\xbb\x4d\x5d\xa5\x55\x9a\xda\x7e\x0c\x6a\x80\x77\xa8\xf2\xda\xd8\x21\x55\x51\xc9\x0e\x89\x3e\xc8\x81\x7b\x1b\x88\xab\x2a\xad\x06\x38\x0b\x6c\x7b\x9d\xc1\xaa\x6a\x4d\x5b\xe6\x0f\x93\xed\x23\xca\x71\x4f\x19\x8e\xde\xa5\xd8\x62\x0b\xfa\x67\xcf\xbb\x95\xdc\x51\xd0\xee\xd6\x64\x78\x3e\x25\x3f\x1b\x93\x37\xe5\xd6\xbf\x0b\x1a\xeb\xbd\x83\x5e\x0b\x7a\x3a\x39\x68\x7b\xd8\xfd\x3a\xda\xa2\x5c\x07\x27\x33\x16\xe1\x85\xfe\x7e\x19\x7e\x4d\x46\xe8\x53\xca\xc3\xe0\xc5\x59\xf0\xb0\xbc\x21\xc2\x35\x3e\xe1\x7d\xd2\xb8\x39\x3c\x16\xf0\x92\xd3\xec\x0d\xa8\x69\x8b\x4e\x9d\xc6\x2a\x4d\x79\xf9\xa3\x23\x9c\x83\x4b\x2c\x55\x03\x61\x79\x70\x85\x8d\x5e\x17\xec\xc4\x9a\xf9\x7f\x20\xd8\xd2\xa2\x54\xc2\x33\xb4\xb0\xb8\x67\xbc\xf3\x79\xb5\xdf\x9f\xad\xfb\x07\x78\xcf\x2b\xdd\xf0\x13\xf3\xdf\xe0\xca\x5b\x3f\x36\x4f\x3b\x9e\x47\xcd\xbf\x5f\x5c\xfd\x67\xc3\x60\x38\xfc\x07\x4a\x7f\x8f\xbe\xd1\x33\xf4\xcd\x5f\x61\xdf\xcd\x66\xf5\xec\x0c\xb9\x6d\x12\xf4\x1c\x49\xda\xcb\x91\x3a\x29\x52\x17\x43\xea\x22\x48\xc7\xf3\xa3\x2d\x7a\xf4\x4a\x76\xd4\xb1\xf5\x22\x7e\x1e\xcd\x03\x08\x6e\x78\x50\x33\x97\x7f\x07\x00\x00\xff\xff\x42\x1d\x8c\x6d\x47\x17\x00\x00") func templateDialectSqlFeatureSchemaconfigTmplBytes() ([]byte, error) { return bindataRead( @@ -746,7 +746,7 @@ func templateDialectSqlFeatureSchemaconfigTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/dialect/sql/feature/schemaconfig.tmpl", size: 5958, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/dialect/sql/feature/schemaconfig.tmpl", size: 5959, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -791,7 +791,7 @@ func templateDialectSqlGroupTmpl() (*asset, error) { return a, nil } -var _templateDialectSqlMetaTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x4f\x6f\xdb\xb8\x13\x3d\x4b\x9f\x62\x60\xf8\x90\x04\x09\x95\xe6\xf6\xfb\x01\x3e\x14\xf9\x03\x18\x69\x82\xee\x26\xd8\x4b\x51\x2c\x68\x71\x64\x13\xa6\x49\x95\xa4\x9d\x0a\x82\xbf\xfb\x82\x7f\x24\x51\x5a\xbb\x7b\xe8\x4d\xe2\x0c\xdf\xcc\x3c\xbe\x37\x6d\x5b\x5c\xe5\xf7\xaa\x6e\x34\x5f\x6f\x2c\xdc\xdd\x7e\xfa\xdf\x4d\xad\xd1\xa0\xb4\xf0\x44\x4b\x5c\x29\xb5\x85\xa5\x2c\x09\x7c\x16\x02\x7c\x92\x01\x17\xd7\x07\x64\x24\x7f\xdf\x70\x03\x46\xed\x75\x89\x50\x2a\x86\xc0\x0d\x08\x5e\xa2\x34\xc8\x60\x2f\x19\x6a\xb0\x1b\x84\xcf\x35\x2d\x37\x08\x77\xe4\xb6\x8b\x42\xa5\xf6\x92\xe5\x5c\xfa\xf8\x97\xe5\xfd\xe3\xeb\xdb\x23\x54\x5c\x20\xc4\x33\xad\x94\x05\xc6\x35\x96\x56\xe9\x06\x54\x05\x36\x29\x66\x35\x22\xc9\xaf\x8a\xe3\x31\xcf\xdd\x0c\x50\x2a\x69\x2c\x95\xd6\x80\x44\x64\xc8\xa0\x52\x1a\xcc\x0f\x01\x8c\x53\x81\xa5\x35\x04\x7c\x76\xdb\x02\xc3\x8a\x4b\x84\x59\x8c\x14\xe6\x87\x28\x76\x68\x69\xd1\x63\xcc\xe0\x78\xcc\xb3\xb6\xbd\x01\x4d\xe5\x1a\x61\x6e\xe1\xff\x0b\x98\x93\x3f\x51\x50\x8b\xec\xbd\xa9\xd1\xf8\x14\x9f\xc3\x2b\x90\x2e\x87\x2c\x1f\xc8\x9b\x55\x9a\xae\xf1\x19\x1b\x98\x4f\xfe\x7d\x7e\x56\x14\xd0\xb6\x2e\xf9\x95\xee\x10\x8e\xc7\x27\x8e\x82\x2d\x1f\x60\xa3\x04\x33\x7e\x70\x63\x35\x97\x6b\x60\x28\x95\x75\x1f\xee\x6c\xf9\x00\x95\x4b\x0c\x34\xe0\x18\x82\x38\xdc\x93\xa0\x0b\x98\x85\xf3\x69\x27\xb3\xd8\x3a\x4a\xd6\x8f\xda\x7d\x17\x05\xbc\xd3\x95\xc0\xa4\x25\xeb\xff\xa5\x03\x1f\x1a\x10\xea\x03\x35\xcc\xbb\x9a\xdd\xbb\x31\x6a\xe9\x8a\x1a\x24\x79\x16\x60\x62\x13\x24\xfc\xf9\xda\x09\xb3\x18\x98\x7d\x64\xeb\x8e\xd2\xc8\x10\x86\x0b\xf7\xf1\x4d\x7c\x85\xb4\x1b\xf7\x35\x74\x18\x6e\x74\xad\x68\xf7\x4e\x5c\xc9\x02\xd9\xda\x35\xd2\x3d\xd3\x1c\xc9\xcb\xdd\x8b\xcb\x78\xdf\x20\xd4\x9a\xef\xa8\x6e\x60\x8b\x0d\x30\x2c\x05\xd5\xc8\x60\x85\x42\x7d\x90\xb6\xed\xe9\xc8\xce\x34\x13\xc7\x42\x27\x8a\x74\xb6\x54\x12\xf1\xdc\x5d\x6f\x6a\xec\xb3\x12\x1d\x20\x59\xca\x03\x6a\x83\xbf\x1e\xd6\x53\xef\x14\x3d\xcc\xea\x11\xbb\x81\x51\x5a\x6e\x1b\x12\x81\x97\x16\xf0\x27\x37\xd6\x84\x37\xe1\x06\x6a\x5a\x6e\xe9\xda\x7b\x4b\x69\xef\x4a\x05\xf4\xa0\x38\x83\x92\xeb\x72\x2f\xa8\x06\x86\x35\x4a\x86\xb2\x6c\xe0\x83\xdb\x8d\xaf\x34\x4b\x4a\x7d\x8d\x10\xc7\xe3\xac\x83\xeb\x85\x77\x7e\x8a\xc5\x08\x63\x4a\x53\xc2\x71\xe0\x4c\xd9\xe1\x8d\x46\x2c\xdd\x2b\xb1\xdf\xc9\xb3\xfc\x94\x3e\x3c\xf6\xcc\x7f\x48\x22\x3b\x07\x3c\x7a\xd8\x10\xfe\xb5\x63\x06\xb1\x84\x55\x74\xa0\x9a\xbb\xae\x7e\x67\x15\xf5\x18\xb3\xce\x93\xa1\x13\x13\x35\x4f\x85\x80\xb7\x3f\xbe\xc4\xc1\x8d\x2f\x71\xc2\x93\x7e\x69\x18\x92\x67\x07\xaa\x7b\x84\x05\x7c\xfb\x1e\x96\x4c\x1b\xe5\xed\xf6\x43\x42\xc1\x75\x9c\x35\x5a\xb4\x0a\x16\xf5\x4b\x25\x7a\xd4\xdf\xaa\x4e\xdd\xe9\xf8\xf1\x14\x15\x57\xee\x55\xa9\x6c\xba\xb5\x81\xde\xe6\xea\x43\x1a\xa0\xae\x67\xe4\x6b\x79\xe3\xfc\xe7\x09\x71\xa8\x5e\x7b\x73\xf2\x14\x62\xcf\xd8\x0c\x5b\x21\x3d\x1b\x9c\xef\x58\x48\x90\xdc\x21\xb5\x40\x35\xba\x32\xce\xd0\x4d\xaf\x86\x9e\x16\xeb\xc4\x98\x67\x9e\x95\x14\x75\xcc\xcc\x88\x83\xad\x23\x81\xc4\xe9\x33\xaf\x90\x6a\xeb\xd7\xd6\x44\x27\xd7\xdd\xcd\x5e\xdc\x61\xb0\x4e\x22\xc9\x90\xaf\xfb\x5d\x2f\x75\xd7\xca\xc5\xa4\xe8\xdf\xd7\xa7\xf6\xe3\xbf\xb7\x99\x3f\x1c\xbc\xf2\xf5\x39\x95\x33\x95\xec\x9c\x87\xee\x3c\x4d\x53\x17\x99\x91\x8d\x7a\xec\x74\x5b\x8e\x37\xd1\xd4\x62\x70\xf1\x72\xf7\x72\x49\xc2\xcd\x53\x2d\x25\x34\x3b\x22\xb9\x64\xf8\x73\x6c\x38\x03\xb7\x9e\x4b\x38\x1b\xff\xe4\xe2\x03\x1d\x3d\xd9\xe3\xbf\xcb\x94\xfa\xa9\x4f\xab\xbd\x2c\x5d\xbf\xbf\xe3\xd3\x1e\xc3\xfb\xb4\x28\xe0\x2f\x2a\x38\x8b\x6a\xd0\x58\x2b\xed\xb6\x70\x10\x7f\x5c\x52\x7e\x97\x73\x03\x07\x97\x09\x17\x35\xd5\xb6\xb3\xc7\xe8\x19\x2e\x49\xee\xd0\x53\xc4\x8b\x08\x11\xc8\xbb\x84\x95\x52\x02\xda\x3c\x73\x8d\x73\x27\x94\x20\x9c\x8e\x23\x27\x62\x5e\x75\x75\x17\x8b\x2e\xf0\x8d\x7f\xf7\xb1\x4c\xa3\xdd\x6b\x09\x56\xef\x31\xe8\x34\x2e\xb6\x73\x26\x9c\xd4\x49\xe3\x1e\x6f\x54\x2c\x89\xf6\x05\x27\x15\xb3\xde\x1e\xc3\x9b\xc5\x8c\x8a\x0a\x83\x79\xf2\x68\xff\x04\x00\x00\xff\xff\xf1\x7a\xdb\xa8\xaa\x0a\x00\x00") +var _templateDialectSqlMetaTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x4f\x6f\xdb\xb8\x13\x3d\x4b\x9f\x62\x60\xf8\x90\x04\x09\x95\xe6\xf6\xfb\x01\x3e\x14\xf9\x03\x18\x69\x82\xee\x26\xd8\x4b\x51\x2c\x68\x71\x64\x13\xa6\x49\x95\xa4\x9d\x0a\x82\xbf\xfb\x82\x7f\x24\x51\x5a\xbb\x7b\xe8\x4d\xe2\x0c\xdf\xcc\x3c\xbe\x37\x6d\x5b\x5c\xe5\xf7\xaa\x6e\x34\x5f\x6f\x2c\xdc\xdd\x7e\xfa\xdf\x4d\xad\xd1\xa0\xb4\xf0\x44\x4b\x5c\x29\xb5\x85\xa5\x2c\x09\x7c\x16\x02\x7c\x92\x01\x17\xd7\x07\x64\x24\x7f\xdf\x70\x03\x46\xed\x75\x89\x50\x2a\x86\xc0\x0d\x08\x5e\xa2\x34\xc8\x60\x2f\x19\x6a\xb0\x1b\x84\xcf\x35\x2d\x37\x08\x77\xe4\xb6\x8b\x42\xa5\xf6\x92\xe5\x5c\xfa\xf8\x97\xe5\xfd\xe3\xeb\xdb\x23\x54\x5c\x20\xc4\x33\xad\x94\x05\xc6\x35\x96\x56\xe9\x06\x54\x05\x36\x29\x66\x35\x22\xc9\xaf\x8a\xe3\x31\xcf\xdd\x0c\x50\x2a\x69\x2c\x95\xd6\x80\x44\x64\xc8\xa0\x52\x1a\xcc\x0f\x01\x8c\x53\x81\xa5\x35\x04\x7c\x76\xdb\x02\xc3\x8a\x4b\x84\x59\x8c\x14\xe6\x87\x28\x76\x68\x69\xd1\x63\xcc\xe0\x78\xcc\xb3\xb6\xbd\x01\x4d\xe5\x1a\x61\x6e\xe1\xff\x0b\x98\x93\x3f\x51\x50\x8b\xec\xbd\xa9\xd1\xf8\x14\x9f\xc3\x2b\x90\x2e\x87\x2c\x1f\xc8\x9b\x55\x9a\xae\xf1\x19\x1b\x98\x4f\xfe\x7d\x7e\x56\x14\xd0\xb6\x2e\xf9\x95\xee\x10\x8e\xc7\x27\x8e\x82\x2d\x1f\x60\xa3\x04\x33\x7e\x70\x63\x35\x97\x6b\x60\x28\x95\x75\x1f\xee\x6c\xf9\x00\x95\x4b\x0c\x34\xe0\x18\x82\x38\xdc\x93\xa0\x0b\x98\x85\xf3\x69\x27\xb3\xd8\x3a\x4a\xd6\x8f\xda\x7d\x17\x05\xbc\xd3\x95\xc0\xa4\x25\xeb\xff\xa5\x03\x1f\x1a\x10\xea\x03\x35\xcc\xbb\x9a\xdd\xbb\x31\x6a\xe9\x8a\x1a\x24\x79\x16\x60\x62\x13\x24\xfc\xf9\xda\x09\xb3\x18\x98\x7d\x64\xeb\x8e\xd2\xc8\x10\x86\x0b\xf7\xf1\x4d\x7c\x85\xb4\x1b\xf7\x35\x74\x18\x6e\x74\xad\x68\xf7\x4e\x5c\xc9\x02\xd9\xda\x35\xd2\x3d\xd3\x1c\xc9\xcb\xdd\x8b\xcb\x78\xdf\x20\xd4\x9a\xef\xa8\x6e\x60\x8b\x0d\x30\x2c\x05\xd5\xc8\x60\x85\x42\x7d\x90\xb6\xed\xe9\xc8\xce\x34\x13\xc7\x42\x27\x8a\x74\xb6\x54\x12\xf1\xdc\x5d\x6f\x6a\xec\xb3\x12\x1d\x20\x59\xca\x03\x6a\x83\xbf\x1e\xd6\x53\xef\x14\x3d\xcc\xea\x11\xbb\x81\x51\x5a\x6e\x1b\x12\x81\x97\x16\xf0\x27\x37\xd6\x84\x37\xe1\x06\x6a\x5a\x6e\xe9\xda\x7b\x4b\x69\xef\x4a\x05\xf4\xa0\x38\x83\x92\xeb\x72\x2f\xa8\x06\x86\x35\x4a\x86\xb2\x6c\xe0\x83\xdb\x8d\xaf\x34\x4b\x4a\x7d\x8d\x10\xc7\xe3\xac\x83\xeb\x85\x77\x7e\x8a\xc5\x08\x63\x4a\x53\xc2\x71\xe0\x4c\xd9\xe1\x8d\x46\x2c\xdd\x2b\xb1\xdf\xc9\xb3\xfc\x94\x3e\x3c\xf6\xcc\x7f\x48\x22\x3b\x07\x3c\x7a\xd8\x10\xfe\xb5\x63\x06\xb1\x84\x55\x74\xa0\x9a\xbb\xae\x7e\x67\x15\xf5\x18\xb3\xce\x93\xa1\x13\x13\x35\x4f\x85\x80\xb7\x3f\xbe\xc4\xc1\x8d\x2f\x71\xc2\x93\x7e\x69\x18\x92\x67\x07\xaa\x7b\x84\x05\x7c\xfb\x1e\x96\x4c\x1b\xe5\xed\xf6\x43\x42\xc1\x75\x9c\x35\x5a\xb4\x0a\x16\xf5\x4b\x25\x7a\xd4\xdf\xaa\x4e\xdd\xe9\xf8\xf1\x14\x15\x57\xee\x55\xa9\x6c\xba\xb5\x81\xde\xe6\xea\x43\x1a\xa0\xae\x67\xe4\x6b\x79\xe3\xfc\xe7\x09\x71\xa8\x5e\x7b\x73\xf2\x14\x62\xcf\xd8\x0c\x5b\x21\x3d\x1b\x9c\xef\x58\x48\x90\xdc\x21\xb5\x40\x35\xba\x32\xce\xd0\x4d\xaf\x86\x9e\x16\xeb\xc4\x98\x67\x9e\x95\x14\x75\xcc\xcc\x88\x83\xad\x23\x81\xc4\xe9\x33\xaf\x90\x6a\xeb\xd7\xd6\x44\x27\xd7\xdd\xcd\x5e\xdc\x61\xb0\x4e\x22\xc9\x90\xaf\xfb\x5d\x2f\x75\xd7\xca\xc5\xa4\xe8\xdf\xd7\xa7\xf6\xe3\xbf\xb7\x99\x3f\x1c\xbc\xf2\xf5\x39\x95\x33\x95\xec\x9c\x87\xee\x3c\x4d\x53\x17\x99\x91\x8d\x7a\xec\x74\x5b\x8e\x37\xd1\xd4\x62\x70\xf1\x72\xf7\x72\x49\xc2\xcd\x53\x2d\x25\x34\x3b\x22\xb9\x64\xf8\x73\x6c\x38\x03\xb7\x9e\x4b\x38\x1b\xff\xe4\xe2\x03\x1d\x3d\xd9\xe3\xbf\xcb\x94\xfa\xa9\x4f\xab\xbd\x2c\x5d\xbf\xbf\xe3\xd3\x1e\xc3\xfb\xb4\x28\xe0\x2f\x2a\x38\x8b\x6a\xd0\x58\x2b\xed\xb6\x70\x10\x7f\x5c\x52\x7e\x97\x73\x03\x07\x97\x09\x17\x35\xd5\xb6\xb3\xc7\xe8\x19\x2e\x49\xee\xd0\x53\xc4\x8b\x08\x11\xc8\xbb\x84\x95\x52\x02\xda\x3c\x73\x8d\x73\x27\x94\x20\x9c\x8e\x23\x27\x62\x5e\x75\x75\x17\x8b\x2e\xf0\x8d\x7f\xf7\xb1\x4c\xa3\xdd\x6b\x09\x56\xef\x31\xe8\x34\x2e\xb6\x73\x26\x9c\xd4\x49\xe3\x1e\x6f\x54\x2c\x89\xf6\x05\x27\x15\xb3\xde\x1e\xc3\x9b\xc5\x8c\x8a\x0a\x83\x79\xfa\x68\xff\x04\x00\x00\xff\xff\x63\x1f\xc5\xf8\xab\x0a\x00\x00") func templateDialectSqlMetaTmplBytes() ([]byte, error) { return bindataRead( @@ -806,7 +806,7 @@ func templateDialectSqlMetaTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/dialect/sql/meta.tmpl", size: 2730, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/dialect/sql/meta.tmpl", size: 2731, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -851,7 +851,7 @@ func templateDialectSqlPredicateTmpl() (*asset, error) { return a, nil } -var _templateDialectSqlQueryTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\xed\x6f\xdb\x46\xd2\xff\x2c\xfd\x15\x53\xc2\x0d\x24\x41\xa1\x9d\x3c\x0f\x1e\xe0\x51\xe0\x03\x7c\xb1\x03\x08\x69\xd3\x5c\x9d\xb6\x1f\x0c\xa1\xa5\xc9\xa5\xbc\x10\xb5\xa4\x97\x4b\xc7\x86\xa2\xff\xfd\x30\xb3\x2f\x5c\xbe\x48\x96\xdd\xa6\x3d\xdc\xdd\x87\x24\xe2\xee\xec\xce\xec\xbc\xfc\x66\xf6\x25\x9b\xcd\xf1\x64\xf8\x36\x2f\x1e\x24\x5f\xde\x28\x78\x7d\xf2\xea\xff\x5f\x16\x92\x95\x4c\x28\x78\x17\xc5\xec\x3a\xcf\x57\x30\x17\x71\x08\x67\x59\x06\x44\x54\x02\xf6\xcb\x3b\x96\x84\xc3\x4f\x37\xbc\x84\x32\xaf\x64\xcc\x20\xce\x13\x06\xbc\x84\x8c\xc7\x4c\x94\x2c\x81\x4a\x24\x4c\x82\xba\x61\x70\x56\x44\xf1\x0d\x83\xd7\xe1\x89\xed\x85\x34\xaf\x44\x32\xe4\x82\xfa\xbf\x9b\xbf\xbd\xf8\x70\x79\x01\x29\xcf\x18\x98\x36\x99\xe7\x0a\x12\x2e\x59\xac\x72\xf9\x00\x79\x0a\xca\x63\xa6\x24\x63\xe1\x70\x72\xbc\xdd\x0e\x87\xb8\x06\x38\x4b\x12\xae\x78\x2e\xa2\x0c\x52\xce\xb2\xa4\x84\x34\xd7\xcc\xaf\x2b\x9e\x25\x4c\x86\x40\xd4\x9b\x0d\x24\x2c\xe5\x82\x41\x90\xf0\x28\x63\xb1\x3a\x2e\x6f\xb3\xe3\xdb\x8a\xc9\x87\x63\x3d\x32\x80\xed\x76\x38\xd8\x6c\x5e\xc2\x67\xae\x6e\xe0\x28\x7c\x97\x4b\xc6\x97\xe2\x3d\x7b\x28\xa9\x6b\x80\xed\xef\xde\x97\x70\x9d\xe7\x99\xa6\x64\x22\x01\x9a\xdd\xfd\xdc\xcb\x29\xd0\xc4\x70\x54\xac\x96\x30\x3b\x85\xa3\xf0\x32\xce\x0b\x16\x7e\x8c\xe2\x55\xb4\x64\xb6\xd7\x88\x8e\x14\x45\x54\xc6\x51\xe6\x08\xff\x6e\x7a\x0c\xa1\x64\x31\xe3\x77\x9a\xd2\xfd\x76\xc3\x51\x9a\xb4\x12\x31\x8c\x1a\xb4\xdb\x2d\x4c\x7c\x2e\xdb\xed\x18\xca\xdb\xec\x2c\xcb\x46\xb1\xba\x87\x38\x17\x8a\xdd\xab\xf0\xad\xfe\x77\x0c\xa3\xab\x05\xd1\x87\x1f\xa2\x35\x8a\x38\x05\x26\x65\x2e\xc7\xb0\x19\x0e\xee\x22\x09\xa3\xe1\x60\x20\xf2\x84\x95\x70\x0a\x2d\xd2\x0d\x6a\x6d\x9f\x46\x9d\x4a\x4f\xa1\x25\x63\x68\x7a\xcc\x04\x46\xbb\x83\xc1\xaf\x65\xc1\xe2\x1e\x72\xd2\xef\x65\xc1\xe2\xd1\xb8\xc9\xf3\x22\x59\x32\xcb\x2d\xcb\xa3\x84\x25\x9f\x1e\x0a\x2d\xec\x66\x03\x19\x13\x10\xc2\x76\xbb\x40\x9b\x6e\x90\x86\xc6\xca\x48\x2c\x19\x1c\x31\x54\x6c\x68\x06\x63\x4f\x93\x27\x7e\xb3\xf0\x22\x5a\x32\xf9\x5d\x1e\x25\xef\xd0\x8d\x50\xbd\xdf\x9c\x82\xe0\xd9\xd4\xcd\xe6\x84\x1f\x6c\x5b\xcb\x19\xef\x77\xb8\x46\xe7\x7b\x7f\x25\x03\x9e\xa2\x0a\x8c\x9c\x7c\xea\xc9\xba\xd9\x00\x4f\x61\xa9\xe0\x88\xc3\x09\x8a\xf3\xe5\x0b\x92\x6a\x96\x4f\x5b\x82\x1b\x06\x5a\x35\x9e\xb9\x94\xac\x18\xb5\x39\x39\xeb\x55\xf2\x14\x2c\xa1\x1e\x47\x46\x0b\x3f\xe4\x09\x0b\xdf\xe6\x59\xb5\x16\x38\x43\x54\x14\x4c\x24\xa3\x6e\xdf\x94\x8c\xeb\x05\x85\xaf\x98\x30\x0c\xc7\x46\x93\x3e\x53\x3d\xcb\x65\x1c\x89\x9f\xa3\xac\x22\xf3\xa2\xeb\x8f\x62\xc3\xee\x6a\x51\x2a\xc9\xc5\x92\xdc\x99\x0b\xc5\x64\x1a\xc5\x6c\xd3\x70\x66\xf2\x62\xd4\xe2\x8b\x86\x0f\xc7\xb9\x48\xf9\x72\xd6\xf1\x38\xdd\xbe\xf5\xbc\xdf\xac\x88\x3e\xa7\x80\xff\xa0\xa8\x92\xa9\x4a\x0a\xfa\x0c\x4b\x27\xa0\x95\x6c\x3c\x1c\x38\xf1\xcf\xca\x92\x2f\xc5\x2e\xd1\xa7\x70\xa7\x97\xd6\x58\xc0\x58\x2f\x80\xe4\xe7\x29\xfa\xb3\xe6\x3f\x86\xd3\x53\x38\xd1\xfa\x37\x12\xa4\x6b\x15\x5e\x20\x71\x3a\x0a\x2c\x08\x6d\xb7\x33\x30\x6c\xe3\x28\xcb\x58\x42\x96\xcb\x2b\x45\x9f\x5c\x2c\xa1\xd6\x69\x80\xab\xd9\x7a\x7a\x22\x46\x57\x35\xcb\x97\xaf\x16\xbb\x63\x8f\xd6\x4f\x0d\x61\x33\x0c\xbd\xaf\x76\xb0\xfb\xaa\x8b\x48\xca\xa6\xf2\xac\x4a\xb4\x12\x71\x28\xa6\x84\x2c\xcb\x3f\xc3\xba\x52\x91\x42\xf9\x31\x17\x94\xb7\xd9\x52\x46\xc5\x4d\xf8\x0f\x8b\x12\x70\xfd\x00\x98\xec\xd8\xbd\x62\xa2\xe4\xb9\x28\x21\x97\x50\x95\x98\xb9\xd8\xba\xc8\x22\xc5\xca\x90\x32\x87\xb7\x1e\xb5\x2e\xb2\x12\x17\xbe\x8e\x54\x7c\xf3\xc9\xd0\xf5\x65\x14\x34\xe7\xf1\x44\x67\x14\x1f\x50\x70\x06\x02\x7e\x3d\x55\x1d\xe4\xf7\x96\xab\xa1\x39\xaa\x87\x5a\x6d\xf8\xbf\x79\x8a\x66\xc7\x99\x9a\x4b\xc3\x30\x2a\x11\xc6\xa7\x1d\x77\x4d\x24\xfe\x9a\x02\xb9\xda\xf8\x0d\x8d\xd7\x51\x4e\x4e\x62\x55\xcd\x33\x0a\x09\x52\xe8\x0e\x7f\xf2\xac\x82\x6e\xce\x33\xa7\x7d\x1f\x36\x1b\xd6\x77\x3a\x24\x7d\x27\x70\x04\xc1\x8f\x2c\x0e\x3c\x09\x03\xa4\x0e\x70\xac\x55\x8a\x33\x44\x9f\x82\x19\x22\x16\x7a\x0e\x17\xcb\xc0\x42\xf4\x2e\x6d\x75\x05\x7e\x52\x66\x7c\x9b\x57\x42\xed\xc8\x8d\x5c\x28\x1f\x42\x74\x76\x9a\x3d\x92\x9e\x8c\x3c\xce\x74\xc4\xe0\x60\xd3\x3d\x4d\xf8\x8b\x7b\x5e\xee\x12\x1e\x73\x9e\x2f\xbd\x98\x5a\xaf\x6a\x4b\xe0\x6b\x61\xec\xdc\xaf\xeb\x3e\x69\x94\x95\x6c\xba\x13\x69\xe2\x1b\x16\xaf\x80\xa1\x48\x4c\xc4\x6c\x06\xdf\xde\x05\xc4\x53\x07\xb0\xb5\x13\xfc\x0d\x4e\x9e\x6a\x27\x4f\xc1\x30\xe9\x89\x77\xdf\x38\x2f\xba\xfd\xb8\x06\xb4\xc0\xcc\xeb\xc4\x6f\xdb\x37\xf8\x14\x5d\x67\x6c\xd6\xc9\x4c\xd4\x4c\x99\xde\x24\xaf\x2e\x89\xcd\x6a\x48\x34\x3f\xf7\x19\x50\xb6\x75\x1c\x06\x08\x81\x33\x5d\xc6\x52\x5e\x0e\xe7\xe7\x21\xb6\xa1\xc5\x4a\x65\xab\x2f\x22\xd5\x73\x76\x79\xd9\x61\x34\x22\x12\xca\x0e\xa0\xbf\xe9\xaf\x77\x32\x5f\x77\x73\x59\x79\x4b\xe5\xca\x4f\x82\xdf\x56\x6c\x46\xc9\x7d\x6a\x21\xc0\xd4\xd5\x3d\x5e\xa1\x7b\xde\x10\x48\xe8\xdf\x63\x34\x1d\x39\x44\x6f\xca\x5f\x47\x2b\x36\xaa\xf3\xd9\xc9\xd4\x1f\x3a\xde\x35\xea\x09\x85\x42\xcf\xfa\x71\x5a\xdc\x13\x70\x2a\x92\x09\xa0\xcc\x8a\x36\xa6\x56\xd1\x9f\x57\x7c\x81\x0e\x7d\xc0\x8c\xcf\x2c\x6a\x1c\x1b\x5b\xbf\xe0\x1f\xad\xe2\xa2\x57\xbd\x85\x64\x09\x8f\x31\x13\x69\x15\x17\x1d\xf5\x7e\xb4\x14\xb6\x66\x28\x59\x46\x1b\x27\x0a\x81\xf0\xd2\x7c\xe9\xea\xa6\xad\x85\xc2\x56\x67\x05\x0a\xe5\x86\x76\xa5\xcb\xf8\x9a\xab\x3e\x01\xa9\xe3\x8d\xe9\xf7\xc0\x40\x0b\xf7\x1d\x35\x9f\xc2\x84\xfa\xed\x64\x79\x9a\x96\xac\x77\x36\xdd\xf3\xc6\x52\x74\xe6\xfb\x41\xb7\x9f\xc2\x44\x53\xec\x57\x5e\x2e\x13\x26\x77\xe9\xed\x07\xec\xfc\x03\x75\xd6\x75\xc4\x9f\xa3\x8c\x27\xda\xf4\x2d\x85\x1a\x90\x23\x41\x86\x7a\xbf\xb8\x2f\xd1\x59\x16\x81\x2e\x09\x86\xae\x24\xdf\xbf\xd3\xf4\xc6\xfd\x95\x9b\x4a\xc2\xd7\xfe\xec\xd3\xd0\x36\x6a\xd5\x13\x10\xbb\xce\xf5\x92\xda\x6c\x4c\x32\x74\xdd\x08\x1b\xea\x15\x0e\xb2\x1b\x7e\x82\xe4\x51\x2f\x50\x8f\x87\x03\x67\x6d\x6f\x84\x96\x62\xa4\x5e\xd9\x60\xed\x8c\x36\xed\xb8\xf9\xa0\x3f\x88\xa2\x23\xf5\x4a\xa7\xc2\x1e\x30\xf5\xbd\xd7\x71\xec\x4d\xab\x1e\x81\x95\xc3\x7d\x1f\x28\xcd\xe3\xc5\x6f\xad\xe7\xaf\x5c\xf6\x1a\x36\x5f\xb3\xf4\xc5\x88\xfc\x75\x0a\x45\x1d\x94\xbb\x71\x93\xf4\x5f\xf8\xd0\x76\xd0\x04\x84\x1d\xad\xb1\x8f\x85\xf8\xf3\xd1\xed\xf8\xd8\x20\x28\x2f\x61\x1d\x89\x24\xa2\x83\x2f\x94\xd2\xd0\xc6\x59\x54\x95\x2c\x84\x5f\x18\x94\x2a\x92\x4a\x8f\x21\xdb\x24\x2c\x8d\xaa\x4c\xe9\x6d\xd0\x14\x22\x91\x40\x7e\xc7\xa4\xe4\x09\x03\xae\xe0\x9a\xa1\x37\xf0\x14\x04\x63\x09\x4b\x42\xdf\xd9\x34\x9c\x8e\x0c\x98\x8e\x35\x5c\x8f\xd6\x91\xba\x09\xbf\x8f\xee\xe7\x42\xfd\xcf\xeb\xf1\xb3\x33\x80\xe3\xa2\x67\xd5\x29\xa0\x51\xe4\x59\x8a\xe1\xb6\x09\x69\xc7\x13\x5d\xca\x1d\x17\x91\x5e\x1f\x17\xac\x24\x3f\xa6\x66\x58\x32\xc1\x64\xa4\x78\x2e\x48\x45\x44\x95\xa7\x10\xc1\x92\xdf\x31\x01\x2c\x59\xb2\x43\x8e\xfc\x70\x5c\x7d\xe0\x77\x24\xc8\x33\x29\xb7\xa3\x04\xc8\x8e\x36\xb9\x9f\x8d\xca\x3d\x01\x52\x99\xaf\x0d\x07\x3d\x96\xf9\x27\x79\xb8\x8b\x69\x4c\x83\x02\xe1\x34\x68\x01\x50\x39\xc9\xbf\x94\xe8\xed\xd8\x4b\xe2\xab\xbc\x31\x1f\x4f\x30\x42\xbd\x39\xe7\xd4\xf0\xd2\x11\xf8\x00\x6d\x69\x7e\xac\x8d\xd2\xc4\xb8\x1e\xc8\x71\xa0\x3c\x6e\x6c\x24\xad\xc9\x2e\xa4\x1c\x1d\xb6\x3f\x2c\x15\x2b\x1a\x7b\xd0\x0f\xec\xf3\xa5\x62\xc5\x08\x3d\xc0\x15\xb9\x08\x95\x28\x85\xe8\xd6\xcd\xd0\x69\xd7\x0d\xad\x0a\xd6\xc9\x36\x9e\xfa\x33\x7f\xca\x47\xfa\xf8\x8a\x8a\xe4\xfe\xc9\xbb\x9d\x5e\x6b\xab\x50\x6c\x4c\x8e\x86\x1c\xb9\x2f\x3d\xe8\x47\x96\xd1\x40\x92\x49\x37\xcd\xcb\xb9\xb8\x63\xb2\xac\xdb\x3a\xcb\x61\x5a\x9e\x76\x49\x8e\xa6\xe4\x29\x76\x7f\xff\xfa\x7b\x6d\x5d\x73\xc4\xd8\x33\xc3\xc7\xf7\xde\xf0\x30\x0c\xdd\x99\x5b\x56\xb2\xc7\xc6\x6a\x88\xf2\xc6\xfb\x07\x76\x7a\x2c\x2e\x7d\x7c\xd0\x01\x0a\x9a\xf7\x2b\x27\x11\x8c\x89\xaf\x99\x40\x50\x2b\x3a\xc6\xb6\x5b\xf0\x9c\xf7\x92\xa9\x0f\x8c\x2f\x6f\xae\x73\x59\x3e\x5a\x75\x4c\x01\x9d\x7f\xbc\x03\xbb\x10\x23\x1e\xc7\xae\x48\xc3\x95\x87\x2b\x0e\xc6\xe8\xc4\xeb\x90\x9b\x0b\x99\xaf\xff\x2d\x61\x8c\xc8\x78\xd2\x87\x60\xf3\xf3\x3f\x11\x79\x78\xf2\x5f\xcc\xf9\x0f\xc0\x1c\x8c\x86\xbf\x02\x73\x7e\x27\xe0\xec\x41\x86\xe6\x01\xe9\xde\x28\xdf\x1f\x8f\xf6\xbc\x59\xc3\x46\x4f\x3c\xee\xb8\x42\x7a\x63\x46\x78\x35\x44\xd3\xfd\xb4\x32\xd3\x95\xb1\x10\x9d\x0c\x99\x55\xff\xac\xcb\x59\x73\x3e\xa4\xcf\x9f\x69\x1b\xcd\x93\x9a\x7a\x1d\x15\x57\xfe\x31\x19\x6c\xb7\xed\x8b\xca\xd6\x68\x53\xf9\xdb\xeb\x0b\x6d\x63\x7d\x79\xa3\x77\xf5\x3c\x29\xaf\x08\x7a\xe7\xe7\x0b\xd0\xf7\x1b\xd4\x8e\x42\xba\xb3\x9d\x74\x65\x2e\x77\xc2\xf9\x39\x4d\xeb\x5f\x6d\x68\x65\x5c\x2a\x59\xc5\xca\x5d\xa6\xb9\x7b\x51\x83\x01\xfe\xed\xa8\xbe\x3f\xb3\xf7\xa8\x83\x01\x02\x2d\xae\xf2\x6a\xd1\x04\x0d\xb3\x42\x47\xe3\x8e\xd3\xac\x1a\x3a\xa4\x8b\xd6\x65\x2c\xc9\x4a\x7f\xf5\x1c\x84\xa2\xf4\x8d\xc3\xd0\xc1\x00\x9b\x66\x2d\x92\xba\x77\x60\x30\x68\xd6\x07\x4a\x9a\x62\xc7\x91\xe9\x1e\x7c\xda\x73\x8a\xda\x83\x49\x7a\x88\xf9\xc7\x1d\x85\xcd\xcc\xa9\x4e\xef\x71\xce\x60\x50\x86\xbf\xdc\x30\x49\x30\x1b\xce\xed\x75\xd2\x01\xcc\xae\xf4\xb5\x6a\x6b\xa5\xaf\x30\x1c\x33\xfa\x79\xe2\x22\x73\x31\x85\x74\x45\xbb\xf3\xb1\x2f\x21\x4e\x9a\x57\x94\x12\x03\xe4\xfe\xa1\xca\xb2\xb9\x50\xff\xf7\xbf\x81\xbb\xb4\x25\x5f\xfe\xa9\x64\xf2\x9c\xe2\xda\x5e\xd8\xe2\xa8\x53\xdd\x89\x83\x8c\x7d\x6b\x24\xb0\xb3\x73\xb1\x77\xf2\xda\x43\xba\x2c\xb8\x40\x0e\x35\xc5\x4e\x3e\xf5\x75\xa0\x51\xf4\x18\xae\x5e\xfb\x17\x92\x46\xcf\x66\xbf\xd0\xea\x7b\x61\x97\x83\xde\x3f\xd5\x17\xad\x5c\xd0\xd7\xd6\xd7\x95\xbe\x92\x34\x1c\xf2\x4a\x4d\x81\x0b\xd8\x71\xeb\x89\x01\x41\x24\xf9\x0a\x97\x9f\x57\x2a\x1c\x4d\x6a\x3e\xda\x06\x88\x60\xdf\xe4\x2b\xf8\xf2\x05\x18\xa9\xb3\x46\xa5\x41\xff\x0d\x69\x25\xd8\x7d\xc1\x62\xc5\x12\xe0\x89\xde\x60\x53\xd5\x86\xc1\xf7\x32\xaf\x54\x60\x26\x36\x6f\x03\x18\x17\x56\x02\x2e\x8c\x00\xb4\xb2\x2e\x7f\xd4\xf5\xef\x63\xcf\x45\x8b\x7b\x5e\x29\x32\x8a\xc1\xe7\xd6\x55\xdb\x99\x5c\x06\x10\xe0\xba\x03\x08\x08\x95\x02\xf2\x26\x08\xac\x99\x03\x67\x95\xc3\xaf\xdd\x8e\xd7\xaf\xd7\xfa\x52\x36\xb0\xef\x0e\x3c\x3f\x19\x70\xf1\xb8\x44\x5c\x78\x02\x39\xe7\x6b\x88\xa5\xbd\xe3\x0f\x93\x0a\xa1\xda\xd9\x29\x29\xaf\xac\xe2\x16\x0d\x2b\x1d\x66\x17\xca\x23\x3c\x41\xd7\x24\x44\x36\xd7\x59\x76\xca\x96\x7f\x18\x5c\x77\x69\xc4\x34\xa0\x67\xfb\xe4\x34\xd3\x95\x69\x5b\x34\xc9\xeb\xf6\xfa\x75\xc1\xc0\xdf\x9a\x7b\x21\xe4\x2a\x95\x47\x8a\xab\x06\xf0\x3f\xa1\xca\x1a\x3c\xab\xce\x6a\x58\xaa\x71\x49\xfe\x78\xd9\xb5\xb7\xf0\x6a\x3f\x41\xe9\x3c\x48\xe9\xbd\x2e\xa7\x9c\xfd\xac\xeb\xf2\xe6\x81\x88\xe7\x20\xbf\xe9\xaa\x47\xa7\xe8\x40\x27\x12\x93\x80\x03\x74\x90\xdf\xec\x7d\xa7\x31\x11\x91\x9b\x9c\xd4\xbf\x79\x98\x9f\xcf\x85\xf5\x16\x97\x54\x84\x2d\x1c\xdd\x95\xad\x9e\xc8\xbc\xe2\x1a\x7b\xab\xde\x29\x35\x1d\xe3\x18\x31\x6c\x69\xe4\xd5\x45\x96\x83\x19\x69\x6e\xcf\x75\xe8\x68\x6f\xc4\xed\xd2\x62\xd8\x8d\x9b\x5d\xaa\xf1\x62\xa7\xa5\x19\x1d\x4b\x7a\x1c\x4b\xb4\x9a\x84\xab\xaf\xb4\x81\x5b\x57\x31\x7e\xdd\xa6\x85\xbb\xe2\x8b\xfd\x55\x98\xff\x3e\x67\x3f\xf1\x14\x84\xc7\xda\x55\xf6\x98\xe9\x75\x26\xfd\xe1\xb3\x78\xf7\xde\x7a\x57\xe2\x97\xb0\xbd\xb5\x58\x5f\x2d\x8b\x3f\xfb\xea\xd9\xc3\x0a\xb9\x3d\xda\xe0\x29\xa4\xab\xfa\x7d\x0e\x5f\x34\x97\xf8\xbe\xae\xd0\xd3\x55\xd3\x3b\x06\x0d\x84\x22\x74\x9a\xa4\xab\x71\xad\x63\x84\xcc\x49\xba\x5a\x34\x95\x69\x5b\xa7\x8e\x63\x4b\x79\x87\x7a\xf9\xbf\x90\x87\xdb\x75\xfd\x0e\x1f\x4f\xf5\xab\xb5\x97\x2b\xf6\x60\xfd\xbd\x6d\x82\xe0\xab\xfb\xbc\xd8\xe1\xc6\xcf\xd9\x7d\xed\xf2\xd8\x9d\x3b\xb0\xc7\x3c\xb5\x7f\x5f\x45\x8b\xf2\xf7\x56\x76\x5b\x66\x3a\xec\xd6\x0c\x3f\x1d\xf4\x9b\xb0\x74\xfb\xca\x43\xf5\xb3\x67\x67\xd6\xf3\x76\xd3\x38\x72\xf7\x19\xa4\xef\xe0\xee\xfe\x29\xec\xce\x3c\xda\xb7\x39\x79\xc2\xde\xa4\x73\xc0\xd2\xdc\x73\x6c\xff\xaa\x18\x32\xc0\xb3\x03\x71\x3c\x78\x6a\x56\xc0\xbb\xa2\xe9\xa0\x10\xe2\x25\x4d\x85\xc2\x51\x1a\xe9\x8d\x24\xbf\xf0\xf3\x31\xeb\xcf\x09\xed\x96\x70\x93\x74\xd5\x2f\xe1\x7e\x5f\x75\xfb\x38\xfd\x4e\x07\xb6\x5b\x51\xef\x3f\x3d\x3c\x7e\x24\xb1\x35\x4a\xe2\xf6\xa9\xd5\xf6\x59\x27\x4c\x7e\xd5\xed\x0e\x94\x22\xd9\x78\xe4\x7e\x26\x97\x75\x1f\x3d\x86\xf1\x7b\x6b\x17\xd1\x27\xd9\x55\x96\x29\x84\x14\x8f\xc4\xdb\x93\x0e\x6d\xcc\xdf\x44\xe5\x47\xc9\x52\x7e\xef\x0d\xc1\x0d\x70\x60\x4e\x19\x51\x07\xfa\x45\x95\x1d\xad\x19\x91\x70\xee\x2c\xda\x3b\xd2\xd4\x3a\x16\xb9\x72\xe3\x78\x96\x45\xd7\x19\x72\x9d\x34\x9e\x51\x47\xde\x7a\x9e\xf8\xff\x00\x8e\x0b\xc9\x8a\x48\x32\x7a\x0f\xe7\x69\x6c\xf7\x7f\x0b\x38\xf0\xe6\xcf\x04\x68\xba\xfb\x6e\xdb\x7b\xfb\x84\x5e\xbf\xe7\x52\x7b\x94\x8e\x1b\xcf\x87\x5f\x50\x1f\x5d\x5f\x50\x44\x6c\x10\xd2\x66\x90\x12\x44\xcc\x76\xbe\xf9\xe3\xe2\x0e\xc7\xe9\xe7\x4f\xf0\xed\x2d\x85\x82\xfe\xdf\x10\x53\x48\xc7\xee\x61\x4c\xad\xbb\x7f\x06\x00\x00\xff\xff\xee\xa9\x1f\x78\x9d\x32\x00\x00") +var _templateDialectSqlQueryTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\xed\x6f\xdb\x46\xd2\xff\x2c\xfd\x15\x53\xc2\x0d\x24\x41\xa1\x9d\x3c\x0f\x1e\xe0\x51\xe0\x03\x7c\xb1\x03\x08\x69\xd3\x5c\x9d\xb6\x1f\x0c\xa1\xa5\xc9\xa5\xbc\x10\xb5\xa4\x97\x4b\xc7\x86\xa2\xff\xfd\x30\xb3\x2f\x5c\xbe\x48\x96\xdd\xa6\x3d\xdc\xdd\x87\x24\xe2\xee\xec\xce\xec\xbc\xfc\x66\xf6\x25\x9b\xcd\xf1\x64\xf8\x36\x2f\x1e\x24\x5f\xde\x28\x78\x7d\xf2\xea\xff\x5f\x16\x92\x95\x4c\x28\x78\x17\xc5\xec\x3a\xcf\x57\x30\x17\x71\x08\x67\x59\x06\x44\x54\x02\xf6\xcb\x3b\x96\x84\xc3\x4f\x37\xbc\x84\x32\xaf\x64\xcc\x20\xce\x13\x06\xbc\x84\x8c\xc7\x4c\x94\x2c\x81\x4a\x24\x4c\x82\xba\x61\x70\x56\x44\xf1\x0d\x83\xd7\xe1\x89\xed\x85\x34\xaf\x44\x32\xe4\x82\xfa\xbf\x9b\xbf\xbd\xf8\x70\x79\x01\x29\xcf\x18\x98\x36\x99\xe7\x0a\x12\x2e\x59\xac\x72\xf9\x00\x79\x0a\xca\x63\xa6\x24\x63\xe1\x70\x72\xbc\xdd\x0e\x87\xb8\x06\x38\x4b\x12\xae\x78\x2e\xa2\x0c\x52\xce\xb2\xa4\x84\x34\xd7\xcc\xaf\x2b\x9e\x25\x4c\x86\x40\xd4\x9b\x0d\x24\x2c\xe5\x82\x41\x90\xf0\x28\x63\xb1\x3a\x2e\x6f\xb3\xe3\xdb\x8a\xc9\x87\x63\x3d\x32\x80\xed\x76\x38\xd8\x6c\x5e\xc2\x67\xae\x6e\xe0\x28\x7c\x97\x4b\xc6\x97\xe2\x3d\x7b\x28\xa9\x6b\x80\xed\xef\xde\x97\x70\x9d\xe7\x99\xa6\x64\x22\x01\x9a\xdd\xfd\xdc\xcb\x29\xd0\xc4\x70\x54\xac\x96\x30\x3b\x85\xa3\xf0\x32\xce\x0b\x16\x7e\x8c\xe2\x55\xb4\x64\xb6\xd7\x88\x8e\x14\x45\x54\xc6\x51\xe6\x08\xff\x6e\x7a\x0c\xa1\x64\x31\xe3\x77\x9a\xd2\xfd\x76\xc3\x51\x9a\xb4\x12\x31\x8c\x1a\xb4\xdb\x2d\x4c\x7c\x2e\xdb\xed\x18\xca\xdb\xec\x2c\xcb\x46\xb1\xba\x87\x38\x17\x8a\xdd\xab\xf0\xad\xfe\x77\x0c\xa3\xab\x05\xd1\x87\x1f\xa2\x35\x8a\x38\x05\x26\x65\x2e\xc7\xb0\x19\x0e\xee\x22\x09\xa3\xe1\x60\x20\xf2\x84\x95\x70\x0a\x2d\xd2\x0d\x6a\x6d\x9f\x46\x9d\x4a\x4f\xa1\x25\x63\x68\x7a\xcc\x04\x46\xbb\x83\xc1\xaf\x65\xc1\xe2\x1e\x72\xd2\xef\x65\xc1\xe2\xd1\xb8\xc9\xf3\x22\x59\x32\xcb\x2d\xcb\xa3\x84\x25\x9f\x1e\x0a\x2d\xec\x66\x03\x19\x13\x10\xc2\x76\xbb\x40\x9b\x6e\x90\x86\xc6\xca\x48\x2c\x19\x1c\x31\x54\x6c\x68\x06\x63\x4f\x93\x27\x7e\xb3\xf0\x22\x5a\x32\xf9\x5d\x1e\x25\xef\xd0\x8d\x50\xbd\xdf\x9c\x82\xe0\xd9\xd4\xcd\xe6\x84\x1f\x6c\x5b\xcb\x19\xef\x77\xb8\x46\xe7\x7b\x7f\x25\x03\x9e\xa2\x0a\x8c\x9c\x7c\xea\xc9\xba\xd9\x00\x4f\x61\xa9\xe0\x88\xc3\x09\x8a\xf3\xe5\x0b\x92\x6a\x96\x4f\x5b\x82\x1b\x06\x5a\x35\x9e\xb9\x94\xac\x18\xb5\x39\x39\xeb\x55\xf2\x14\x2c\xa1\x1e\x47\x46\x0b\x3f\xe4\x09\x0b\xdf\xe6\x59\xb5\x16\x38\x43\x54\x14\x4c\x24\xa3\x6e\xdf\x94\x8c\xeb\x05\x85\xaf\x98\x30\x0c\xc7\x46\x93\x3e\x53\x3d\xcb\x65\x1c\x89\x9f\xa3\xac\x22\xf3\xa2\xeb\x8f\x62\xc3\xee\x6a\x51\x2a\xc9\xc5\x92\xdc\x99\x0b\xc5\x64\x1a\xc5\x6c\xd3\x70\x66\xf2\x62\xd4\xe2\x8b\x86\x0f\xc7\xb9\x48\xf9\x72\xd6\xf1\x38\xdd\xbe\xf5\xbc\xdf\xac\x88\x3e\xa7\x80\xff\xa0\xa8\x92\xa9\x4a\x0a\xfa\x0c\x4b\x27\xa0\x95\x6c\x3c\x1c\x38\xf1\xcf\xca\x92\x2f\xc5\x2e\xd1\xa7\x70\xa7\x97\xd6\x58\xc0\x58\x2f\x80\xe4\xe7\x29\xfa\xb3\xe6\x3f\x86\xd3\x53\x38\xd1\xfa\x37\x12\xa4\x6b\x15\x5e\x20\x71\x3a\x0a\x2c\x08\x6d\xb7\x33\x30\x6c\xe3\x28\xcb\x58\x42\x96\xcb\x2b\x45\x9f\x5c\x2c\xa1\xd6\x69\x80\xab\xd9\x7a\x7a\x22\x46\x57\x35\xcb\x97\xaf\x16\xbb\x63\x8f\xd6\x4f\x0d\x61\x33\x0c\xbd\xaf\x76\xb0\xfb\xaa\x8b\x48\xca\xa6\xf2\xac\x4a\xb4\x12\x71\x28\xa6\x84\x2c\xcb\x3f\xc3\xba\x52\x91\x42\xf9\x31\x17\x94\xb7\xd9\x52\x46\xc5\x4d\xf8\x0f\x8b\x12\x70\xfd\x00\x98\xec\xd8\xbd\x62\xa2\xe4\xb9\x28\x21\x97\x50\x95\x98\xb9\xd8\xba\xc8\x22\xc5\xca\x90\x32\x87\xb7\x1e\xb5\x2e\xb2\x12\x17\xbe\x8e\x54\x7c\xf3\xc9\xd0\xf5\x65\x14\x34\xe7\xf1\x44\x67\x14\x1f\x50\x70\x06\x02\x7e\x3d\x55\x1d\xe4\xf7\x96\xab\xa1\x39\xaa\x87\x5a\x6d\xf8\xbf\x79\x8a\x66\xc7\x99\x9a\x4b\xc3\x30\x2a\x11\xc6\xa7\x1d\x77\x4d\x24\xfe\x9a\x02\xb9\xda\xf8\x0d\x8d\xd7\x51\x4e\x4e\x62\x55\xcd\x33\x0a\x09\x52\xe8\x0e\x7f\xf2\xac\x82\x6e\xce\x33\xa7\x7d\x1f\x36\x1b\xd6\x77\x3a\x24\x7d\x27\x70\x04\xc1\x8f\x2c\x0e\x3c\x09\x03\xa4\x0e\x70\xac\x55\x8a\x33\x44\x9f\x82\x19\x22\x16\x7a\x0e\x17\xcb\xc0\x42\xf4\x2e\x6d\x75\x05\x7e\x52\x66\x7c\x9b\x57\x42\xed\xc8\x8d\x5c\x28\x1f\x42\x74\x76\x9a\x3d\x92\x9e\x8c\x3c\xce\x74\xc4\xe0\x60\xd3\x3d\x4d\xf8\x8b\x7b\x5e\xee\x12\x1e\x73\x9e\x2f\xbd\x98\x5a\xaf\x6a\x4b\xe0\x6b\x61\xec\xdc\xaf\xeb\x3e\x69\x94\x95\x6c\xba\x13\x69\xe2\x1b\x16\xaf\x80\xa1\x48\x4c\xc4\x6c\x06\xdf\xde\x05\xc4\x53\x07\xb0\xb5\x13\xfc\x0d\x4e\x9e\x6a\x27\x4f\xc1\x30\xe9\x89\x77\xdf\x38\x2f\xba\xfd\xb8\x06\xb4\xc0\xcc\xeb\xc4\x6f\xdb\x37\xf8\x14\x5d\x67\x6c\xd6\xc9\x4c\xd4\x4c\x99\xde\x24\xaf\x2e\x89\xcd\x6a\x48\x34\x3f\xf7\x19\x50\xb6\x75\x1c\x06\x08\x81\x33\x5d\xc6\x52\x5e\x0e\xe7\xe7\x21\xb6\xa1\xc5\x4a\x65\xab\x2f\x22\xd5\x73\x76\x79\xd9\x61\x34\x22\x12\xca\x0e\xa0\xbf\xe9\xaf\x77\x32\x5f\x77\x73\x59\x79\x4b\xe5\xca\x4f\x82\xdf\x56\x6c\x46\xc9\x7d\x6a\x21\xc0\xd4\xd5\x3d\x5e\xa1\x7b\xde\x10\x48\xe8\xdf\x63\x34\x1d\x39\x44\x6f\xca\x5f\x47\x2b\x36\xaa\xf3\xd9\xc9\xd4\x1f\x3a\xde\x35\xea\x09\x85\x42\xcf\xfa\x71\x5a\xdc\x13\x70\x2a\x92\x09\xa0\xcc\x8a\x36\xa6\x56\xd1\x9f\x57\x7c\x81\x0e\x7d\xc0\x8c\xcf\x2c\x6a\x1c\x1b\x5b\xbf\xe0\x1f\xad\xe2\xa2\x57\xbd\x85\x64\x09\x8f\x31\x13\x69\x15\x17\x1d\xf5\x7e\xb4\x14\xb6\x66\x28\x59\x46\x1b\x27\x0a\x81\xf0\xd2\x7c\xe9\xea\xa6\xad\x85\xc2\x56\x67\x05\x0a\xe5\x86\x76\xa5\xcb\xf8\x9a\xab\x3e\x01\xa9\xe3\x8d\xe9\xf7\xc0\x40\x0b\xf7\x1d\x35\x9f\xc2\x84\xfa\xed\x64\x79\x9a\x96\xac\x77\x36\xdd\xf3\xc6\x52\x74\xe6\xfb\x41\xb7\x9f\xc2\x44\x53\xec\x57\x5e\x2e\x13\x26\x77\xe9\xed\x07\xec\xfc\x03\x75\xd6\x75\xc4\x9f\xa3\x8c\x27\xda\xf4\x2d\x85\x1a\x90\x23\x41\x86\x7a\xbf\xb8\x2f\xd1\x59\x16\x81\x2e\x09\x86\xae\x24\xdf\xbf\xd3\xf4\xc6\xfd\x95\x9b\x4a\xc2\xd7\xfe\xec\xd3\xd0\x36\x6a\xd5\x13\x10\xbb\xce\xf5\x92\xda\x6c\x4c\x32\x74\xdd\x08\x1b\xea\x15\x0e\xb2\x1b\x7e\x82\xe4\x51\x2f\x50\x8f\x87\x03\x67\x6d\x6f\x84\x96\x62\xa4\x5e\xd9\x60\xed\x8c\x36\xed\xb8\xf9\xa0\x3f\x88\xa2\x23\xf5\x4a\xa7\xc2\x1e\x30\xf5\xbd\xd7\x71\xec\x4d\xab\x1e\x81\x95\xc3\x7d\x1f\x28\xcd\xe3\xc5\x6f\xad\xe7\xaf\x5c\xf6\x1a\x36\x5f\xb3\xf4\xc5\x88\xfc\x75\x0a\x45\x1d\x94\xbb\x71\x93\xf4\x5f\xf8\xd0\x76\xd0\x04\x84\x1d\xad\xb1\x8f\x85\xf8\xf3\xd1\xed\xf8\xd8\x20\x28\x2f\x61\x1d\x89\x24\xa2\x83\x2f\x94\xd2\xd0\xc6\x59\x54\x95\x2c\x84\x5f\x18\x94\x2a\x92\x4a\x8f\x21\xdb\x24\x2c\x8d\xaa\x4c\xe9\x6d\xd0\x14\x22\x91\x40\x7e\xc7\xa4\xe4\x09\x03\xae\xe0\x9a\xa1\x37\xf0\x14\x04\x63\x09\x4b\x42\xdf\xd9\x34\x9c\x8e\x0c\x98\x8e\x35\x5c\x8f\xd6\x91\xba\x09\xbf\x8f\xee\xe7\x42\xfd\xcf\xeb\xf1\xb3\x33\x80\xe3\xa2\x67\xd5\x29\xa0\x51\xe4\x59\x8a\xe1\xb6\x09\x69\xc7\x13\x5d\xca\x1d\x17\x91\x5e\x1f\x17\xac\x24\x3f\xa6\x66\x58\x32\xc1\x64\xa4\x78\x2e\x48\x45\x44\x95\xa7\x10\xc1\x92\xdf\x31\x01\x2c\x59\xb2\x43\x8e\xfc\x70\x5c\x7d\xe0\x77\x24\xc8\x33\x29\xb7\xa3\x04\xc8\x8e\x36\xb9\x9f\x8d\xca\x3d\x01\x52\x99\xaf\x0d\x07\x3d\x96\xf9\x27\x79\xb8\x8b\x69\x4c\x83\x02\xe1\x34\x68\x01\x50\x39\xc9\xbf\x94\xe8\xed\xd8\x4b\xe2\xab\xbc\x31\x1f\x4f\x30\x42\xbd\x39\xe7\xd4\xf0\xd2\x11\xf8\x00\x6d\x69\x7e\xac\x8d\xd2\xc4\xb8\x1e\xc8\x71\xa0\x3c\x6e\x6c\x24\xad\xc9\x2e\xa4\x1c\x1d\xb6\x3f\x2c\x15\x2b\x1a\x7b\xd0\x0f\xec\xf3\xa5\x62\xc5\x08\x3d\xc0\x15\xb9\x08\x95\x28\x85\xe8\xd6\xcd\xd0\x69\xd7\x0d\xad\x0a\xd6\xc9\x36\x9e\xfa\x33\x7f\xca\x47\xfa\xf8\x8a\x8a\xe4\xfe\xc9\xbb\x9d\x5e\x6b\xab\x50\x6c\x4c\x8e\x86\x1c\xb9\x2f\x3d\xe8\x47\x96\xd1\x40\x92\x49\x37\xcd\xcb\xb9\xb8\x63\xb2\xac\xdb\x3a\xcb\x61\x5a\x9e\x76\x49\x8e\xa6\xe4\x29\x76\x7f\xff\xfa\x7b\x6d\x5d\x73\xc4\xd8\x33\xc3\xc7\xf7\xde\xf0\x30\x0c\xdd\x99\x5b\x56\xb2\xc7\xc6\x6a\x88\xf2\xc6\xfb\x07\x76\x7a\x2c\x2e\x7d\x7c\xd0\x01\x0a\x9a\xf7\x2b\x27\x11\x8c\x89\xaf\x99\x40\x50\x2b\x3a\xc6\xb6\x5b\xf0\x9c\xf7\x92\xa9\x0f\x8c\x2f\x6f\xae\x73\x59\x3e\x5a\x75\x4c\x01\x9d\x7f\xbc\x03\xbb\x10\x23\x1e\xc7\xae\x48\xc3\x95\x87\x2b\x0e\xc6\xe8\xc4\xeb\x90\x9b\x0b\x99\xaf\xff\x2d\x61\x8c\xc8\x78\xd2\x87\x60\xf3\xf3\x3f\x11\x79\x78\xf2\x5f\xcc\xf9\x0f\xc0\x1c\x8c\x86\xbf\x02\x73\x7e\x27\xe0\xec\x41\x86\xe6\x01\xe9\xde\x28\xdf\x1f\x8f\xf6\xbc\x59\xc3\x46\x4f\x3c\xee\xb8\x42\x7a\x63\x46\x78\x35\x44\xd3\xfd\xb4\x32\xd3\x95\xb1\x10\x9d\x0c\x99\x55\xff\xac\xcb\x59\x73\x3e\xa4\xcf\x9f\x69\x1b\xcd\x93\x9a\x7a\x1d\x15\x57\xfe\x31\x19\x6c\xb7\xed\x8b\xca\xd6\x68\x53\xf9\xdb\xeb\x0b\x6d\x63\x7d\x79\xa3\x77\xf5\x3c\x29\xaf\x08\x7a\xe7\xe7\x0b\xd0\xf7\x1b\xd4\x8e\x42\xba\xb3\x9d\x74\x65\x2e\x77\xc2\xf9\x39\x4d\xeb\x5f\x6d\x68\x65\x5c\x2a\x59\xc5\xca\x5d\xa6\xb9\x7b\x51\x83\x01\xfe\xed\xa8\xbe\x3f\xb3\xf7\xa8\x83\x01\x02\x2d\xae\xf2\x6a\xd1\x04\x0d\xb3\x42\x47\xe3\x8e\xd3\xac\x1a\x3a\xa4\x8b\xd6\x65\x2c\xc9\x4a\x7f\xf5\x1c\x84\xa2\xf4\x8d\xc3\xd0\xc1\x00\x9b\x66\x2d\x92\xba\x77\x60\x30\x68\xd6\x07\x4a\x9a\x62\xc7\x91\xe9\x1e\x7c\xda\x73\x8a\xda\x83\x49\x7a\x88\xf9\xc7\x1d\x85\xcd\xcc\xa9\x4e\xef\x71\xce\x60\x50\x86\xbf\xdc\x30\x49\x30\x1b\xce\xed\x75\xd2\x01\xcc\xae\xf4\xb5\x6a\x6b\xa5\xaf\x30\x1c\x33\xfa\x79\xe2\x22\x73\x31\x85\x74\x45\xbb\xf3\xb1\x2f\x21\x4e\x9a\x57\x94\x12\x03\xe4\xfe\xa1\xca\xb2\xb9\x50\xff\xf7\xbf\x81\xbb\xb4\x25\x5f\xfe\xa9\x64\xf2\x9c\xe2\xda\x5e\xd8\xe2\xa8\x53\xdd\x89\x83\x8c\x7d\x6b\x24\xb0\xb3\x73\xb1\x77\xf2\xda\x43\xba\x2c\xb8\x40\x0e\x35\xc5\x4e\x3e\xf5\x75\xa0\x51\xf4\x18\xae\x5e\xfb\x17\x92\x46\xcf\x66\xbf\xd0\xea\x7b\x61\x97\x83\xde\x3f\xd5\x17\xad\x5c\xd0\xd7\xd6\xd7\x95\xbe\x92\x34\x1c\xf2\x4a\x4d\x81\x0b\xd8\x71\xeb\x89\x01\x41\x24\xf9\x0a\x97\x9f\x57\x2a\x1c\x4d\x6a\x3e\xda\x06\x88\x60\xdf\xe4\x2b\xf8\xf2\x05\x18\xa9\xb3\x46\xa5\x41\xff\x0d\x69\x25\xd8\x7d\xc1\x62\xc5\x12\xe0\x89\xde\x60\x53\xd5\x86\xc1\xf7\x32\xaf\x54\x60\x26\x36\x6f\x03\x18\x17\x56\x02\x2e\x8c\x00\xb4\xb2\x2e\x7f\xd4\xf5\xef\x63\xcf\x45\x8b\x7b\x5e\x29\x32\x8a\xc1\xe7\xd6\x55\xdb\x99\x5c\x06\x10\xe0\xba\x03\x08\x08\x95\x02\xf2\x26\x08\xac\x99\x03\x67\x95\xc3\xaf\xdd\x8e\xd7\xaf\xd7\xfa\x52\x36\xb0\xef\x0e\x3c\x3f\x19\x70\xf1\xb8\x44\x5c\x78\x02\x39\xe7\x6b\x88\xa5\xbd\xe3\x0f\x93\x0a\xa1\xda\xd9\x29\x29\xaf\xac\xe2\x16\x0d\x2b\x1d\x66\x17\xca\x23\x3c\x41\xd7\x24\x44\x36\xd7\x59\x76\xca\x96\x7f\x18\x5c\x77\x69\xc4\x34\xa0\x67\xfb\xe4\x34\xd3\x95\x69\x5b\x34\xc9\xeb\xf6\xfa\x75\xc1\xc0\xdf\x9a\x7b\x21\xe4\x2a\x95\x47\x8a\xab\x06\xf0\x3f\xa1\xca\x1a\x3c\xab\xce\x6a\x58\xaa\x71\x49\xfe\x78\xd9\xb5\xb7\xf0\x6a\x3f\x41\xe9\x3c\x48\xe9\xbd\x2e\xa7\x9c\xfd\xac\xeb\xf2\xe6\x81\x88\xe7\x20\xbf\xe9\xaa\x47\xa7\xe8\x40\x27\x12\x93\x80\x03\x74\x90\xdf\xec\x7d\xa7\x31\x11\x91\x9b\x9c\xd4\xbf\x79\x98\x9f\xcf\x85\xf5\x16\x97\x54\x84\x2d\x1c\xdd\x95\xad\x9e\xc8\xbc\xe2\x1a\x7b\xab\xde\x29\x35\x1d\xe3\x18\x31\x6c\x69\xe4\xd5\x45\x96\x83\x19\x69\x6e\xcf\x75\xe8\x68\x6f\xc4\xed\xd2\x62\xd8\x8d\x9b\x5d\xaa\xf1\x62\xa7\xa5\x19\x1d\x4b\x7a\x1c\x4b\xb4\x9a\x84\xab\xaf\xb4\x81\x5b\x57\x31\x7e\xdd\xa6\x85\xbb\xe2\x8b\xfd\x55\x98\xff\x3e\x67\x3f\xf1\x14\x84\xc7\xda\x55\xf6\x98\xe9\x75\x26\xfd\xe1\xb3\x78\xf7\xde\x7a\x57\xe2\x97\xb0\xbd\xb5\x58\x5f\x2d\x8b\x3f\xfb\xea\xd9\xc3\x0a\xb9\x3d\xda\xe0\x29\xa4\xab\xfa\x7d\x0e\x5f\x34\x97\xf8\xbe\xae\xd0\xd3\x55\xd3\x3b\x06\x0d\x84\x22\x74\x9a\xa4\xab\x71\xad\x63\x84\xcc\x49\xba\x5a\x34\x95\x69\x5b\xa7\x8e\x63\x4b\x79\x87\x7a\xf9\xbf\x90\x87\xdb\x75\xfd\x0e\x1f\x4f\xf5\xab\xb5\x97\x2b\xf6\x60\xfd\xbd\x6d\x82\xe0\xab\xfb\xbc\xd8\xe1\xc6\xcf\xd9\x7d\xed\xf2\xd8\x9d\x3b\xb0\xc7\x3c\xb5\x7f\x5f\x45\x8b\xf2\xf7\x56\x76\x5b\x66\x3a\xec\xd6\x0c\x3f\x1d\xf4\x9b\xb0\x74\xfb\xca\x43\xf5\xb3\x67\x67\xd6\xf3\x76\xd3\x38\x72\xf7\x19\xa4\xef\xe0\xee\xfe\x29\xec\xce\x3c\xda\xb7\x39\x79\xc2\xde\xa4\x73\xc0\xd2\xdc\x73\x6c\xff\xaa\x18\x32\xc0\xb3\x03\x71\x3c\x78\x6a\x56\xc0\xbb\xa2\xe9\xa0\x10\xe2\x25\x4d\x85\xc2\x51\x1a\xe9\x8d\x24\xbf\xf0\xf3\x31\xeb\xcf\x09\xed\x96\x70\x93\x74\xd5\x2f\xe1\x7e\x5f\x75\xfb\x38\xfd\x4e\x07\xb6\x5b\x51\xef\x3f\x3d\x3c\x7e\x24\xb1\x35\x4a\xe2\xf6\xa9\xd5\xf6\x59\x27\x4c\x7e\xd5\xed\x0e\x94\x22\xd9\x78\xe4\x7e\x26\x97\x75\x1f\x3d\x86\xf1\x7b\x6b\x17\xd1\x27\xd9\x55\x96\x29\x84\x14\x8f\xc4\xdb\x93\x0e\x6d\xcc\xdf\x44\xe5\x47\xc9\x52\x7e\xef\x0d\xc1\x0d\x70\x60\x4e\x19\x51\x07\xfa\x45\x95\x1d\xad\x19\x91\x70\xee\x2c\xda\x3b\xd2\xd4\x3a\x16\xb9\x72\xe3\x78\x96\x45\xd7\x19\x72\x9d\x34\x9e\x51\x47\xde\x7a\x9e\xf8\xff\x00\x8e\x0b\xc9\x8a\x48\x32\x7a\x0f\xe7\x69\x6c\xf7\x7f\x0b\x38\xf0\xe6\xcf\x04\x68\xba\xfb\x6e\xdb\x7b\xfb\x84\x5e\xbf\xe7\x52\x7b\x94\x8e\x1b\xcf\x87\x5f\x50\x1f\x5d\x5f\x50\x44\x6c\x10\xd2\x66\x90\x12\x44\xcc\x76\xbe\xf9\xe3\xe2\x0e\xc7\xe9\xe7\x4f\xf0\xed\x2d\x85\x82\xfe\xdf\x10\x53\x48\xc7\xee\x61\x8c\xa7\xbb\x7f\x06\x00\x00\xff\xff\x45\xd6\x1d\x75\x9e\x32\x00\x00") func templateDialectSqlQueryTmplBytes() ([]byte, error) { return bindataRead( @@ -866,7 +866,7 @@ func templateDialectSqlQueryTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/dialect/sql/query.tmpl", size: 12957, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/dialect/sql/query.tmpl", size: 12958, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -951,7 +951,7 @@ func templateEntTmpl() (*asset, error) { return a, nil } -var _templateEnttestTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x55\x5f\x8b\xdb\x38\x10\x7f\x96\x3e\xc5\x9c\x59\x0e\x67\xc9\xca\xbd\xbe\x5d\x8f\x7d\x68\xc3\x16\x0a\xd7\xdd\x83\x5d\xb8\x87\x52\x8a\x56\x1e\xdb\x22\x8e\xe4\x4a\xe3\xa6\x8b\xf1\x77\x3f\x24\xff\x89\x93\x34\xe5\xe0\x9e\xee\x2d\xd2\x68\x66\x7e\x7f\x66\x9c\xae\xcb\xae\xf9\xc6\x36\x2f\x4e\x97\x15\xc1\xeb\x57\xbf\xfd\x7e\xd3\x38\xf4\x68\x08\xde\x4b\x85\xcf\xd6\x6e\xe1\x83\x51\x02\xde\xd6\x35\xc4\x47\x1e\x42\xdc\x7d\xc3\x5c\xf0\xa7\x4a\x7b\xf0\xb6\x75\x0a\x41\xd9\x1c\x41\x7b\xa8\xb5\x42\xe3\x31\x87\xd6\xe4\xe8\x80\x2a\x84\xb7\x8d\x54\x15\xc2\x6b\xf1\x6a\x8a\x42\x61\x5b\x93\x73\x6d\x62\xfc\xcf\x0f\x9b\xbb\xfb\xc7\x3b\x28\x74\x8d\x30\xde\x39\x6b\x09\x72\xed\x50\x91\x75\x2f\x60\x0b\xa0\x45\x33\x72\x88\x82\x5f\x67\x7d\xcf\x79\xd7\x41\x8e\x85\x36\x08\x09\x1a\x22\xf4\x94\xc0\x78\x7f\xd5\x6c\x4b\x78\x73\x0b\xcf\xd2\x23\x5c\x89\x8d\x35\x85\x2e\xc5\x5f\x52\x6d\x65\x89\xd3\xa3\xbd\xa6\x0a\xf0\x3b\xa1\xc9\xe1\x0a\x92\x31\x9a\x2c\xaa\xdd\xf4\x3d\x67\x5d\x07\x84\xbb\xa6\x96\x84\x90\x54\x28\x73\x74\x09\x88\x50\xa4\xeb\x20\xe4\x86\x72\x7a\xd7\x58\x47\x90\x72\x96\x14\x3b\x4a\x38\x67\x49\x80\x71\xde\x39\xe1\x2c\xcb\xc0\xe1\xd7\x56\x3b\xcc\xe1\xf9\x05\xbc\xaa\x70\x27\xa1\xb2\x76\xeb\x05\x67\x5f\xe0\x42\x66\xe6\x5a\x43\x7a\x87\xa1\x78\xd7\x81\x2e\xe0\x4a\x3c\xb6\x4d\xe8\xfb\x51\x97\x2e\xc0\x0b\x70\x59\x52\x6a\xaa\xda\x67\xa1\xec\x2e\x2b\x46\x2b\x33\x34\x94\xe5\x5a\xd6\xa8\x28\xf3\x5f\xeb\x6c\x68\x9a\xc4\x4a\x23\x87\x15\xe7\xf4\xd2\x60\xe0\x90\x65\xf0\x84\x9e\xb4\x29\x9f\x82\xb3\xc1\x16\x6d\x08\x5d\x28\x07\x54\x49\x0a\xb7\xbe\x92\x91\x01\xd2\x1e\xd1\xc4\x24\x1a\x92\xc4\x13\x48\x93\xcf\xa7\x77\xf1\xd4\xfa\x81\xee\x28\xae\xe0\xec\xd0\x62\xae\xdd\x71\xc6\xde\x4b\x5d\xdf\xdb\x7d\xba\xe2\x8c\xdd\x39\x67\x5d\x2a\x84\x98\x9f\x74\xfd\x8a\xb3\x9e\xc7\x76\x0f\x0d\x69\x6b\x40\x45\xa5\x5a\x87\x1e\x54\xad\xc3\x04\x2b\x87\x32\x84\x04\x67\xe3\x9b\xa2\x35\x2a\xbd\xb6\xf1\xe0\x57\x9c\xb3\xf1\x27\x78\x72\xad\xa2\xd8\xd8\x36\xe4\xe1\xd3\xe7\x69\x7c\xfa\x5e\x0c\xc9\x9c\xb1\xae\xbb\xb9\x2c\x38\xdb\x0d\xa7\x87\x21\x7f\x90\x56\x7c\x9c\x2f\x0f\x25\x46\xa5\x59\x14\x3b\xcb\xe0\x6f\x4d\xd5\xc3\x08\xa4\xb0\x6e\x2f\x5d\xee\x61\x42\x46\xf6\x9c\x4e\xa0\xb1\xcc\x4a\x23\x66\x21\xc4\x19\xe8\xd5\xa4\x4e\xc7\x99\x43\x6a\xdd\xa8\x81\x85\x59\x85\x81\xb4\x88\x25\x6e\x41\x36\x0d\x9a\x3c\x1d\xce\xeb\x80\xc2\x0b\x21\xa2\xd8\x71\x5d\x2e\x0a\x30\xf2\x38\xe2\xfb\x63\x3a\xb2\x25\x0b\x83\x58\xc7\x6c\x8e\x73\x67\x52\x3f\x52\xf2\xdf\xf3\x5a\xba\xb2\xa0\xb7\xb8\x3e\x65\xb9\xb0\x68\xc0\x66\x70\x7f\x84\xe9\xd3\xe7\x09\xc4\xd4\x2c\xf4\xb2\xe1\x4b\xf3\xeb\x78\xd1\xf5\x9c\x15\xd6\xc1\x97\x58\x3c\x44\x9c\x34\x25\xc6\x4e\xd3\x94\xa5\x36\x36\x9c\xf0\xdb\x20\x70\x1c\x67\x34\xa0\x64\x5d\x7b\x38\xb2\x13\x4d\x5c\xa0\xa0\xde\x8d\x6b\xcd\x99\x82\xe1\x45\x4a\xf3\xc6\xae\x21\x77\xfa\x1b\xba\x7b\xb9\xc3\x35\xe4\x92\xe4\x63\xfc\x76\x86\x73\x18\x77\x6d\xca\x81\x78\x90\x78\xe6\xb3\xe8\xb8\x19\xa6\x6e\x62\x76\x22\xc2\x8a\x33\xb5\x06\x74\x2e\xc4\x4e\x70\xa6\x97\x3b\xaf\x61\x98\xac\x41\x6d\x5d\xc4\x0a\xbf\xdc\x82\xd1\x75\x94\x85\xc4\xb0\xeb\xe8\xdc\x2a\x1e\x17\x9f\x81\xf8\x11\xfe\xc9\x02\x8e\xd5\xde\xdc\x82\x12\x8f\xc3\xcc\x6c\xc2\xca\x60\xaa\xac\x21\xfc\x4e\xe2\x9d\x54\xdb\xd2\x85\xbf\x9e\x74\x15\x90\x2c\x86\x20\x00\xfa\xe3\x14\xcd\x29\x9c\x63\x3c\x13\xa0\x69\x9d\x47\x1f\xd5\xe8\xe3\x3d\xee\x47\x09\xcf\xcc\x3c\x84\x7e\xea\xe8\xfc\xec\xc8\xd6\xff\xe6\xd9\x89\x5d\x87\x16\x4b\x5f\xfe\x37\x32\x1f\xfe\xb6\xfe\x09\x00\x00\xff\xff\xcc\x85\x67\x6d\xca\x08\x00\x00") +var _templateEnttestTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x55\x5f\x8b\xdb\x38\x10\x7f\x96\x3e\xc5\x9c\x59\x0e\x67\xc9\xca\xbd\xbe\x5d\x8f\x7d\x68\xc3\x16\x0a\xd7\xdd\x83\x5d\xb8\x87\x52\x8a\x56\x1e\xdb\x22\x8e\xe4\x4a\xe3\xa6\x8b\xf1\x77\x3f\x24\xff\x89\x93\x34\xe5\xe0\x9e\xee\x2d\xd2\x68\xe6\xf7\x67\x66\x9c\xae\xcb\xae\xf9\xc6\x36\x2f\x4e\x97\x15\xc1\xeb\x57\xbf\xfd\x7e\xd3\x38\xf4\x68\x08\xde\x4b\x85\xcf\xd6\x6e\xe1\x83\x51\x02\xde\xd6\x35\xc4\x47\x1e\x42\xdc\x7d\xc3\x5c\xf0\xa7\x4a\x7b\xf0\xb6\x75\x0a\x41\xd9\x1c\x41\x7b\xa8\xb5\x42\xe3\x31\x87\xd6\xe4\xe8\x80\x2a\x84\xb7\x8d\x54\x15\xc2\x6b\xf1\x6a\x8a\x42\x61\x5b\x93\x73\x6d\x62\xfc\xcf\x0f\x9b\xbb\xfb\xc7\x3b\x28\x74\x8d\x30\xde\x39\x6b\x09\x72\xed\x50\x91\x75\x2f\x60\x0b\xa0\x05\x18\x39\x44\xc1\xaf\xb3\xbe\xe7\xbc\xeb\x20\xc7\x42\x1b\x84\x04\x0d\x11\x7a\x4a\x60\xbc\xbf\x6a\xb6\x25\xbc\xb9\x85\x67\xe9\x11\xae\xc4\xc6\x9a\x42\x97\xe2\x2f\xa9\xb6\xb2\xc4\xe9\xd1\x5e\x53\x05\xf8\x9d\xd0\xe4\x70\x05\xc9\x18\x4d\x16\xd5\x6e\xfa\x9e\xb3\xae\x03\xc2\x5d\x53\x4b\x42\x48\x2a\x94\x39\xba\x04\x44\x28\xd2\x75\x10\x72\x43\x39\xbd\x6b\xac\x23\x48\x39\x4b\x8a\x1d\x25\x9c\xb3\x24\xd0\x38\x47\x4e\x38\xcb\x32\x70\xf8\xb5\xd5\x0e\x73\x78\x7e\x01\xaf\x2a\xdc\x49\xa8\xac\xdd\x7a\xc1\xd9\x17\xb8\x90\x99\xb9\xd6\x90\xde\x61\x28\xde\x75\xa0\x0b\xb8\x12\x8f\x6d\x13\x70\x3f\xea\xd2\x05\x7a\x81\x2e\x0b\xf4\x4b\x2b\xb4\xcd\xd0\x50\x96\x6b\x59\xa3\xa2\xcc\x7f\xad\xb3\x01\x29\x89\xe9\x23\xf1\x15\xe7\xf4\xd2\x60\x20\x9e\x65\xf0\x84\x9e\xb4\x29\x9f\x42\x3b\x43\x2f\xb4\x21\x74\x85\x0c\xbe\x57\x92\xc2\xad\xaf\x64\xa4\x8d\xb4\x47\x34\x31\x89\x86\x24\xf1\x04\xd2\xe4\xf3\xe9\x5d\x3c\xb5\x7e\xd0\x38\x3a\x2a\x38\x3b\x40\xcc\xb5\x3b\xce\xd8\x7b\xa9\xeb\x7b\xbb\x4f\x57\x9c\xb1\x3b\xe7\xac\x4b\x85\x10\xf3\x93\xae\x5f\x71\xd6\xf3\x08\xf7\xd0\x90\xb6\x06\x54\xb4\xa7\x75\xe8\x41\xd5\x3a\x8c\xad\x72\x28\x43\x48\x70\x36\xbe\x29\x5a\xa3\xd2\x6b\x1b\x0f\x7e\xc5\x39\x1b\x7f\x82\x27\xd7\x2a\x8a\xc0\xb6\x21\x0f\x9f\x3e\x4f\x33\xd3\xf7\x62\x48\xe6\x8c\x75\xdd\xcd\x65\x97\xd9\x6e\x38\x3d\x0c\xf9\x83\xb5\xe2\xe3\x7c\x79\x28\x31\x3a\xcd\xa2\xd9\x59\x06\x7f\x6b\xaa\x1e\x46\x22\x85\x75\x7b\xe9\x72\x0f\x13\x33\xb2\xe7\x72\x82\x8c\x65\x56\x1a\x39\x0b\x21\xce\x48\xaf\x26\x77\x3a\xce\x1c\x52\xeb\x46\x0f\x2c\xcc\x2e\x0c\xa2\x45\x2c\x71\x0b\xb2\x69\xd0\xe4\xe9\x70\x5e\x07\x16\x5e\x08\x11\xcd\x8e\x3b\x72\xd1\x80\x51\xc7\x91\xde\x1f\xcb\x91\x2d\x59\x18\xcc\x3a\x56\x73\x9c\x3b\x8b\xfa\x91\x93\xff\x5e\xd7\xb2\x2b\x0b\x79\x8b\xeb\x53\x95\x8b\x16\x0d\xdc\x0c\xee\x8f\x38\x7d\xfa\x3c\x91\x98\xc0\x02\x96\x0d\x9f\x97\x5f\xc7\x8b\xae\xe7\xac\xb0\x0e\xbe\xc4\xe2\x21\xe2\xa4\x29\x31\x22\x4d\x53\x96\xda\x08\x38\xf1\xb7\xc1\xe0\x38\xce\x68\x40\xc9\xba\xf6\x70\xd4\x4e\x34\x71\x81\x82\x7b\x37\xae\x35\x67\x0e\x86\x17\x29\xcd\x1b\xbb\x86\xdc\xe9\x6f\xe8\xee\xe5\x0e\xd7\x90\x4b\x92\x8f\xf1\x83\x19\xce\x61\xdc\xb5\x29\x07\xe1\xc1\xe2\x59\xcf\x02\x71\x33\x4c\xdd\xa4\xec\xc4\x84\x15\x67\x6a\x0d\xe8\x5c\x88\x9d\xf0\x4c\x2f\x23\xaf\x61\x98\xac\xc1\x6d\x5d\xc4\x0a\xbf\xdc\x82\xd1\x75\xb4\x85\xc4\xb0\xeb\xe8\xdc\x2a\x1e\x17\x9f\x81\xf8\xe5\xfd\xc9\x02\x8e\xd5\xde\xdc\x82\x12\x8f\xc3\xcc\x6c\xc2\xca\x60\xaa\xac\x21\xfc\x4e\xe2\x9d\x54\xdb\xd2\x85\xff\x9b\x74\x15\x98\x2c\x86\x20\x10\xfa\xe3\x94\xcd\x29\x9d\x63\x3e\x13\xa1\x69\x9d\xc7\x3e\xaa\xb1\x8f\xf7\xb8\x1f\x2d\x3c\x6b\xe6\x21\xf4\xd3\x8e\xce\xcf\x8e\xda\xfa\xdf\x7a\x76\xd2\xae\x03\xc4\xb2\x2f\xff\x1b\x9b\x0f\x7f\x5b\xff\x04\x00\x00\xff\xff\x6d\xa1\xc5\xd8\xbf\x08\x00\x00") func templateEnttestTmplBytes() ([]byte, error) { return bindataRead( @@ -966,7 +966,7 @@ func templateEnttestTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/enttest.tmpl", size: 2250, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/enttest.tmpl", size: 2239, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1011,7 +1011,7 @@ func templateHookTmpl() (*asset, error) { return a, nil } -var _templateImportTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xdd\x6a\xe3\x3c\x10\xbd\x8e\x9f\x62\x30\xfe\x20\x09\xd4\xee\xd7\xbb\x2d\xf4\xa2\xf4\x07\x02\xcb\x52\x68\xf7\x01\x14\x79\x64\x8b\xd8\x92\x56\x9a\x6c\x1b\x8c\xdf\x7d\xd1\x5f\x1b\x36\x4d\xef\x36\x37\x19\x34\x3f\x3a\xe7\xcc\x91\xa7\xa9\x59\x17\x77\xda\x1c\xac\xec\x7a\x82\xab\xcb\xff\xbf\x5d\x18\x8b\x0e\x15\xc1\x23\xe3\xb8\xd5\x7a\x07\x1b\xc5\x6b\xb8\x1d\x06\x08\x45\x0e\x7c\xde\xfe\xc6\xb6\x2e\x5e\x7a\xe9\xc0\xe9\xbd\xe5\x08\x5c\xb7\x08\xd2\xc1\x20\x39\x2a\x87\x2d\xec\x55\x8b\x16\xa8\x47\xb8\x35\x8c\xf7\x08\x57\xf5\x65\xce\x82\xd0\x7b\xd5\x16\x52\x85\xfc\xf7\xcd\xdd\xc3\x8f\xe7\x07\x10\x72\x40\x48\x67\x56\x6b\x82\x56\x5a\xe4\xa4\xed\x01\xb4\x00\x3a\xba\x8c\x2c\x62\x5d\xac\x9b\x79\x2e\x8a\x69\x82\x16\x85\x54\x08\xa5\x1c\x8d\xb6\x54\xc2\x3c\x17\x31\x84\x65\xb1\x28\xb9\x56\x84\x6f\x54\x16\x8b\x12\xad\xd5\xd6\xf9\x48\x8c\xe1\x60\x64\xd4\xfb\x7f\x47\x56\xaa\x2e\x64\x48\x8e\x58\x16\x8b\x69\xba\x80\x66\x0d\x9b\x4e\x69\x8b\xd0\xa1\x42\x4b\x52\x75\xa0\x15\x74\x96\x99\x1e\x9c\x41\x2e\x85\x14\x1c\x08\x47\x33\x30\x42\x07\x01\x51\x68\x95\x02\x94\x26\x58\xe2\x2f\xa8\xea\x3b\xad\x84\xec\xea\x27\xc6\x77\xac\x43\xa8\x72\xb4\xf2\x48\x17\x8b\x72\x9a\x4e\x8b\xe6\xb9\x31\x16\x5b\xc9\x19\x79\x38\x61\xe8\xab\xa4\x1e\xaa\x7a\x73\x5f\xbf\x1c\x0c\xd6\x4f\xbb\xee\x89\x51\x1f\x87\x84\x29\x35\xcc\x73\x2e\x46\xd5\xc6\x4c\x66\x12\x15\xc1\x37\x42\xab\xd8\x00\x26\x5e\x94\x40\x43\xfa\xf9\xe2\xcc\x27\x0b\xda\xd0\xc1\xa0\x2b\xa1\x82\xcc\x2e\xcf\x2e\x3b\x49\xfd\x7e\x5b\x73\x3d\x36\x22\xf9\xa5\x41\x15\xa4\x3d\x93\x6a\x5a\xc9\x06\xe4\x94\x24\x4e\x94\x9e\x49\xdb\xc8\x3a\x01\xb6\x4c\x79\xa5\xd2\x1a\xaf\x6f\xa0\x8e\xf8\xdd\x11\xdb\x9c\x3d\xe5\xfc\x77\x7c\xc2\x88\xb5\xad\x24\xa9\x15\x1b\x12\xad\x95\xf7\x51\x6a\x29\xfc\xb3\x80\xdb\x8f\x2e\xa1\x2d\xc4\x46\xef\x00\x21\x71\x68\x5d\x44\xce\xf7\x8e\xf4\x08\x41\xa0\x28\xe4\x89\x1d\xb3\x7a\x17\x19\x4c\x95\x06\x5c\xdf\x40\x55\x3f\xc6\x78\x9e\xa7\xc9\x7b\x26\x2c\xf7\xa7\x43\x7b\x1f\x66\xb4\x31\x91\x3b\x6e\x80\x19\xe3\x41\xe6\x03\x5f\x1e\x4b\x8e\xd9\x26\xed\x44\xb8\x41\xe4\x0b\x92\x44\x95\xd9\x75\x31\xf1\x89\x89\x92\x73\x99\xbf\xc2\xd7\x2d\x83\x87\x7b\xe6\x92\x79\x96\x5b\xe6\x30\xa6\x56\xab\xd5\xf1\x2a\xfc\xd1\x97\x7b\x38\x0a\x3f\xd5\x97\x0d\x83\x7e\xf5\xf2\x7e\xac\x26\x69\xee\x60\x7b\x00\xff\x45\xf2\xd6\x55\x4e\x6a\xe5\x40\x5b\xd8\x3b\xff\x79\xc9\x4f\xaf\x3e\x23\xfe\xf1\xa2\x33\xa2\xe8\x39\x1a\xcd\x10\x96\x30\x32\xe2\xfd\xcb\x79\x87\x34\xeb\xf2\xc4\x97\xbe\x39\xa8\x18\xa7\x44\x21\x7c\xfe\xed\x9d\x54\xac\xa9\x3e\x5a\xcf\x99\xf3\x4b\x38\x4b\x63\xa5\x22\x01\x65\x7a\x36\xcd\x7f\xae\xf9\x14\xe1\xfb\x1b\x5a\xfd\x2b\xb0\xef\x2e\xfb\x13\x00\x00\xff\xff\x62\x58\x91\x12\x36\x06\x00\x00") +var _templateImportTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x5d\x6b\xeb\x38\x10\x7d\x8e\x7f\xc5\x60\xbc\x90\x04\x6a\x77\xfb\xb6\x85\x3e\x94\x7e\x40\x60\x59\x0a\xed\xfe\x00\x55\x1e\xd9\x22\xb6\xa4\x2b\x4d\x6e\x1b\x8c\xff\xfb\x45\x5f\x8d\xb9\x69\xfb\x76\xfb\xd2\x89\xce\xcc\xe8\xcc\x99\x23\x4f\x53\xb3\x2d\xee\xb4\x39\x5a\xd9\xf5\x04\x57\x97\x7f\xff\x73\x61\x2c\x3a\x54\x04\x8f\x8c\xe3\xab\xd6\x7b\xd8\x29\x5e\xc3\xed\x30\x40\x48\x72\xe0\x71\xfb\x13\xdb\xba\x78\xe9\xa5\x03\xa7\x0f\x96\x23\x70\xdd\x22\x48\x07\x83\xe4\xa8\x1c\xb6\x70\x50\x2d\x5a\xa0\x1e\xe1\xd6\x30\xde\x23\x5c\xd5\x97\x19\x05\xa1\x0f\xaa\x2d\xa4\x0a\xf8\xbf\xbb\xbb\x87\xff\x9e\x1f\x40\xc8\x01\x21\x9d\x59\xad\x09\x5a\x69\x91\x93\xb6\x47\xd0\x02\x68\x71\x19\x59\xc4\xba\xd8\x36\xf3\x5c\x14\xd3\x04\x2d\x0a\xa9\x10\x4a\x39\x1a\x6d\xa9\x84\x79\x2e\x62\x08\xeb\x62\x55\x72\xad\x08\xdf\xa9\x2c\x56\x25\x5a\xab\xad\xf3\x91\x18\xc3\xc1\xc8\xa8\xf7\xff\x1d\x59\xa9\xba\x80\x90\x1c\xb1\x2c\x56\xd3\x74\x01\xcd\x16\x76\x9d\xd2\x16\xa1\x43\x85\x96\xa4\xea\x40\x2b\xe8\x2c\x33\x3d\x38\x83\x5c\x0a\x29\x38\x10\x8e\x66\x60\x84\x0e\x02\xa3\x50\x2a\x05\x28\x4d\xb0\xc6\x1f\x50\xd5\x77\x5a\x09\xd9\xd5\x4f\x8c\xef\x59\x87\x50\xe5\x68\xe3\x99\xae\x56\xe5\x34\x9d\x27\xcd\x73\x63\x2c\xb6\x92\x33\xf2\x74\x42\xd3\x37\x49\x3d\x54\xf5\xee\xbe\x7e\x39\x1a\xac\x9f\xf6\xdd\x13\xa3\x3e\x36\x09\x5d\x6a\x98\xe7\x9c\x8c\xaa\x8d\x48\x9e\x24\x2a\x82\xef\x84\x56\xb1\x01\x4c\xbc\x28\x91\x86\xf4\xe7\x93\xf3\x3c\x59\xd0\x86\x8e\x06\x5d\x09\x15\xe4\xe9\x72\xef\x12\x15\x75\xba\x96\xba\x41\x15\x05\x5e\xfc\x6e\x5a\xc9\x06\xe4\x94\xc4\x4c\xe4\x9f\x49\xdb\x38\x5f\xa2\x66\x99\xf2\x9a\xa4\x85\x5d\xdf\x40\x1d\x99\xba\xc5\x5c\x19\x3d\x9f\xee\xf7\xf8\x8c\x3b\x6b\x5b\x49\x52\x2b\x36\xa4\x01\x36\xde\x31\xa9\xa4\xf0\x0f\x00\x6e\x4f\x55\x42\x5b\x88\x85\x7e\xd7\x42\xe2\xd0\xba\xc8\x9c\x1f\x1c\xe9\x11\x82\x14\x51\xb2\x33\xe3\x65\x9d\x2e\x32\x99\x2a\x35\xb8\xbe\x81\xaa\x7e\x8c\xf1\x3c\x4f\x93\x77\x47\x58\xe3\xff\x0e\xed\x7d\xe8\xd1\x46\x20\x57\xdc\x00\x33\xc6\x93\xcc\x07\x3e\x3d\xa6\x2c\xa7\x4d\xda\x89\x70\x83\xc8\x17\x24\x89\x2a\xb3\xef\x22\xf0\x89\x5d\x92\x47\x99\xbf\xc2\xe7\xad\x83\x5b\x7b\xe6\x92\x4d\xd6\xaf\xcc\x61\x84\x36\x9b\xcd\x72\x15\xfe\xe8\xdb\x3d\x2c\xc2\x4f\xf5\x65\xc3\xa0\xdf\xbc\xbc\xa7\xd5\x24\xcd\x1d\xbc\x1e\xc1\x7f\x7b\xbc\x49\x95\x93\x5a\x39\xd0\x16\x0e\xce\x7f\x48\xf2\x23\xab\xbf\x10\x7f\xb9\xe8\xcc\x28\x7a\x8e\x46\x33\x84\x25\x8c\x8c\x78\xff\xf2\xb5\x43\x9a\x6d\x79\xe6\x4b\x5f\x1c\x54\x8c\x5d\xa2\x10\x1e\x7f\xff\x18\x2a\xe6\x54\xa7\xd2\xaf\xcc\xf9\x2d\x9d\xb5\xb1\x52\x91\x80\x32\x3d\x9b\xe6\x2f\xd7\x7c\xca\xf0\xe3\x0d\x6d\xfe\x14\xd9\x93\xcb\x7e\x05\x00\x00\xff\xff\x98\x8a\x70\x5e\x21\x06\x00\x00") func templateImportTmplBytes() ([]byte, error) { return bindataRead( @@ -1026,12 +1026,12 @@ func templateImportTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/import.tmpl", size: 1590, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/import.tmpl", size: 1569, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _templateInternalTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xc1\xae\xd3\x30\x10\x45\xf7\xfe\x8a\xab\x27\x56\x0f\x70\x1e\xdd\xb1\x60\x51\xb5\x45\x54\x42\x2d\x52\xfb\x01\x75\xec\x49\x6d\xd5\x78\x22\x7b\x52\x54\x45\xfe\x77\x94\xa4\x20\xc4\xca\xf2\x1c\x5f\xcf\xb9\xe3\xd8\xbc\xaa\x0d\xf7\x8f\x1c\xae\x5e\xb0\x7a\xfb\xf4\xf9\x63\x9f\xa9\x50\x12\x7c\x35\x96\x5a\xe6\x1b\xf6\xc9\x6a\xac\x63\xc4\xfc\xa8\x60\xe2\xf9\x4e\x4e\xab\xb3\x0f\x05\x85\x87\x6c\x09\x96\x1d\x21\x14\xc4\x60\x29\x15\x72\x18\x92\xa3\x0c\xf1\x84\x75\x6f\xac\x27\xac\xf4\xdb\x1f\x8a\x8e\x87\xe4\x54\x48\x33\xff\xbe\xdf\xec\x0e\xa7\x1d\xba\x10\x09\xcf\x59\x66\x16\xb8\x90\xc9\x0a\xe7\x07\xb8\x83\xfc\xb3\x4c\x32\x91\x56\xaf\x4d\xad\x4a\x8d\x23\x1c\x75\x21\x11\x5e\x42\x12\xca\xc9\xc4\xa6\x58\x4f\x3f\xcd\x0b\x9e\xfc\x57\x10\x8f\x77\xfa\x1b\x99\x49\xa9\xd6\x71\x84\x5e\x0e\x8a\x85\x50\x6b\xd3\x60\x33\xf9\x5f\x29\x51\x36\x42\x0e\xed\x03\x94\xc4\x7e\xc0\xf6\x88\xc3\xf1\x8c\xdd\x76\x7f\xd6\x53\x20\xb9\xf9\xd7\xa6\xc1\xfb\x76\x08\xd1\x41\x98\x63\x99\x07\x3f\x8c\xbd\x99\xeb\x54\x61\xd1\x80\xe7\xe8\x0a\x0c\x22\x1b\x67\xda\x48\xb8\x53\x2e\x81\xd3\x52\x87\x10\x8d\x50\x11\x2c\xb6\x5a\xf5\xff\xe5\x95\xb2\x9c\x8a\xe0\x34\x73\x7c\xc1\x65\x12\x5f\x6e\xa7\x64\xfa\xe2\x59\x50\xeb\x45\xfd\xf5\xfa\x1d\x00\x00\xff\xff\x05\x64\x78\xff\xd0\x01\x00\x00") +var _templateInternalTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xc1\xae\xd3\x30\x10\x45\xf7\xfe\x8a\xab\x27\x56\x0f\x70\x1e\xdd\xb1\x60\x51\xb5\x45\x54\x42\x2d\x52\xfb\x01\x75\xec\x49\x6d\xd5\x78\x22\x7b\x52\x54\x45\xfe\x77\x94\xa4\x08\xc4\xca\xf2\x1c\x5f\xcf\xb9\xe3\xd8\xbc\xaa\x0d\xf7\x8f\x1c\xae\x5e\xb0\x7a\xfb\xf4\xf9\x63\x9f\xa9\x50\x12\x7c\x35\x96\x5a\xe6\x1b\xf6\xc9\x6a\xac\x63\xc4\xfc\xa8\x60\xe2\xf9\x4e\x4e\xab\xb3\x0f\x05\x85\x87\x6c\x09\x96\x1d\x21\x14\xc4\x60\x29\x15\x72\x18\x92\xa3\x0c\xf1\x84\x75\x6f\xac\x27\xac\xf4\xdb\x1f\x8a\x8e\x87\xe4\x54\x48\x33\xff\xbe\xdf\xec\x0e\xa7\x1d\xba\x10\x09\xcf\x59\x66\x16\xb8\x90\xc9\x0a\xe7\x07\xb8\x83\xfc\xb3\x4c\x32\x91\x56\xaf\x4d\xad\x4a\x8d\x23\x1c\x75\x21\x11\x5e\x42\x12\xca\xc9\xc4\xa6\x58\x4f\x3f\xcd\x0b\x9e\xfc\x57\x10\x8f\x77\xfa\x1b\x99\x49\xa9\xd6\x71\x84\x5e\x0e\x8a\x85\x50\x6b\xd3\x60\x33\xf9\x5f\x29\x51\x36\x42\x0e\xed\x03\x94\xc4\x7e\xc0\xf6\x88\xc3\xf1\x8c\xdd\x76\x7f\xd6\x53\x20\xb9\xf9\xd7\xa6\xc1\xfb\x76\x08\xd1\x41\x98\x63\x99\x07\x3f\x8c\xbd\x99\xeb\x54\x61\xd1\x80\xe7\xe8\x0a\x0c\x22\x1b\x67\xda\x48\xb8\x53\x2e\x81\xd3\x52\x87\x10\x8d\x50\x11\x2c\xb6\x5a\xf5\xff\xe5\x95\xb2\x9c\x8a\xe0\x34\x73\x7c\xc1\x65\x12\x5f\x6e\xa7\x64\xfa\xe2\x59\x50\xeb\x45\xfd\xf5\xfa\x1d\x00\x00\xff\xff\x78\x8a\x42\x42\xd1\x01\x00\x00") func templateInternalTmplBytes() ([]byte, error) { return bindataRead( @@ -1046,7 +1046,7 @@ func templateInternalTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/internal.tmpl", size: 464, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/internal.tmpl", size: 465, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1071,7 +1071,7 @@ func templateMetaTmpl() (*asset, error) { return a, nil } -var _templateMigrateMigrateTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\xdb\x36\x10\x7e\x96\xfe\x8a\x9b\xb6\x75\x76\xe1\x50\x69\x86\x01\x9b\xd7\x3c\x74\x71\x3a\x18\xeb\xbc\x0e\x69\xd1\x3d\x96\x16\x4f\x12\x11\x8a\x54\xc9\x93\x7f\xc0\xf0\xff\x3e\x90\x94\xfc\xa3\x49\xd0\x3d\x6c\x58\x5e\x8c\x1c\x8f\xdf\x77\xf7\x7d\x47\x52\xbb\x5d\xfe\x3c\xbd\x31\xed\xd6\xca\xaa\x26\xb8\xba\x7c\xf1\xd3\x45\x6b\xd1\xa1\x26\x78\xcd\x0b\x5c\x1a\x73\x0f\x73\x5d\x30\x78\xa5\x14\x84\x24\x07\x7e\xdd\xae\x50\xb0\xf4\x5d\x2d\x1d\x38\xd3\xd9\x02\xa1\x30\x02\x41\x3a\x50\xb2\x40\xed\x50\x40\xa7\x05\x5a\xa0\x1a\xe1\x55\xcb\x8b\x1a\xe1\x8a\x5d\x0e\xab\x50\x9a\x4e\x8b\x54\xea\xb0\xfe\x66\x7e\x73\xbb\xb8\xbb\x85\x52\x2a\x84\x3e\x66\x8d\x21\x10\xd2\x62\x41\xc6\x6e\xc1\x94\x40\x27\x64\x64\x11\x59\xfa\x3c\xdf\xef\xd3\x74\xb7\x03\x81\xa5\xd4\x08\x59\x23\x2b\xcb\x09\x33\x88\xf1\x0b\x58\x4b\xaa\x01\x37\x84\x5a\xc0\x37\x90\xbd\xe5\xc5\x3d\xaf\x30\x3b\xc9\xbc\xd8\xef\xd3\x64\xb7\x03\xc2\xa6\x55\x9c\x10\xb2\x1a\xb9\x40\x9b\x01\xf3\x28\xbb\x1d\xf8\xbd\x1e\x4f\x36\xad\xb1\x04\xa3\x34\xc9\x0a\xa3\x09\x37\x94\xa5\x49\x56\x36\x94\xa5\x69\x92\x55\x92\xea\x6e\xc9\x0a\xd3\xe4\x65\x2f\x5c\x8e\x9a\x72\x21\xb9\xc2\x22\xa4\x7e\x21\x25\x77\x9f\x54\xee\x8a\x1a\x1b\x9e\xa5\xe3\x34\x5d\x71\xeb\xc9\xf2\x1c\x3e\x48\xaa\x7f\x55\x66\xc9\xd5\x7b\x2d\x3f\x75\x38\x9f\x81\x43\x72\x41\xa7\x4e\xcb\x15\x5a\xc7\x15\x48\xe1\xc0\xb4\x24\x8d\x76\x40\x26\x2c\xc6\x2e\xa5\xd1\x2c\xe0\xcc\x7b\x11\x63\x96\x37\x0b\x35\x5f\x2a\x14\x13\xf0\x86\x1f\xb2\x61\x2d\x95\x02\xae\x94\x29\xbc\x22\x1c\x5e\xbc\x7c\xf9\xfd\x15\x58\xae\x2b\x0c\x40\xa5\x89\xc6\x06\xca\x12\x90\x17\xb5\x47\x90\xb4\x85\x11\x79\xc4\x71\x24\x5c\x18\x42\xa0\x9a\xd3\x19\x6f\xc1\xb5\x36\x04\x4b\x04\xde\xb6\x4a\xa2\x00\xa3\x21\x6c\x73\x31\x99\x2b\x8b\x5c\x6c\x01\x37\xd2\x11\x4b\x93\x47\xfa\xbf\x86\xa8\x14\x7b\xb8\x76\x90\x6c\x66\x4d\x7b\x63\x54\xd7\xe8\xa3\x5c\xc2\x9a\x16\x8a\x18\xec\xcb\xf9\x37\xb4\x0a\xb0\x46\x89\x1e\xda\x05\x88\xd0\xcb\x1a\x2d\x42\xe7\xcf\x83\x17\x6d\x69\xa8\x86\x52\xa2\x12\x0e\xb8\x16\x80\xa2\x42\xc7\x20\x9c\x23\x81\x25\xef\x14\x05\xf3\x4a\xae\x1c\xf6\x9d\x9f\xb4\x71\xd6\xf5\x31\x7e\xd6\xf1\x5c\x0b\xdc\x7c\xd6\xb0\x0c\xb1\xff\xa2\xdf\x80\x8c\x9f\xf7\x1b\xcf\xa3\x18\xce\x72\x5f\xf4\xd3\x6d\x9e\x8d\x4a\x17\x7c\x84\xc2\x68\x47\x96\x4b\x4d\x0e\xf8\x09\x66\xe7\xa4\xae\xe0\xe3\xfb\xc5\xfc\xcf\xf7\xb7\x30\x5f\xcc\x6e\xff\xfa\x38\x09\x10\x5e\x50\xaa\xd1\x62\x69\x2c\x4e\x40\xd2\x77\xfe\xae\x2a\x4c\xd3\xa0\x16\x28\x3c\x61\xec\xe9\xac\x53\x32\x50\x21\x41\x63\x6c\x3f\xdb\x0a\x37\x72\x29\x95\x1f\xe6\xb3\xfa\xa1\xa8\xfd\x01\x70\x27\xb6\x44\xad\x1f\xb8\x12\xc2\x07\x53\x5e\xcb\x0d\x75\x16\x8f\x96\xf8\xf2\x64\xa5\x2f\xee\x71\x0b\x16\x35\x6f\x7c\x43\x4f\x98\x03\xeb\x1a\x35\x74\x6d\x65\xb9\x90\xba\x0a\xa0\xde\x8f\xd2\x9a\x06\x56\x97\xec\x05\xbb\x84\x91\x74\xae\xc3\x8b\xaf\xaf\x7e\xfc\x61\xcc\x60\xf6\xc4\x18\x0d\x65\x9c\x55\xdb\x07\x8f\xb5\xc6\xd2\x7e\xc3\xed\xe0\xbf\x83\xc2\x22\x27\x5f\xe2\x69\xdd\x52\x0f\xaa\xcc\x66\x6f\x1e\x71\x96\x6c\x77\x20\x3e\xc1\x3c\x27\x3f\x2e\xf8\xfb\x2e\xcf\xe1\x2e\x42\xca\xa8\xd3\xab\xb7\xf3\x70\x68\x86\x02\x26\x83\x2c\xba\x0a\x5e\xfb\x21\x6c\xc3\x3f\x03\x6a\x4a\xdb\x16\x07\x14\x47\xb6\x2b\x08\x76\x69\x22\xec\x0a\x86\xbf\xfe\xb2\x65\x33\xeb\xef\xcd\x34\x39\xdc\x9f\xf3\x19\x2c\x8d\x51\xe9\x3e\x54\xb2\xc0\x75\x0f\x13\xd8\xd1\x01\x07\x8d\xeb\xc3\x28\x28\x89\x9a\x58\x5a\x76\xba\x38\xe6\x8e\x3c\xd1\x39\xc1\x18\x9e\xf7\x38\x3b\xb0\x48\x9d\xd5\xf0\x2c\x06\x76\xc2\xae\xa6\x20\xec\x6a\x0f\x91\xf2\x26\x10\x1d\xf9\x94\x1a\xd8\x2c\xc6\x67\xcf\xf5\x84\x23\x37\xa0\x8e\xfb\x5d\xa3\x82\x36\xd0\xbf\x4a\xec\x26\xfe\x4e\xfc\x4c\x39\x60\x8c\xf5\xea\xfc\x1e\xdf\xbc\x3f\xc2\xa4\x8d\x01\xad\x35\xd6\xcb\xd3\xbf\x85\x13\x1f\x81\xe9\xc1\xa2\x05\xae\xfb\x1d\x23\xc7\x84\x5d\x45\x3c\xc6\xd8\x38\x4d\x64\x19\x92\xbf\xba\x06\x2d\x95\xc7\x48\xfa\xe6\xca\x86\xd8\xad\x07\x2e\x47\x99\x7f\xdb\x7a\xec\x29\x7c\xbb\xca\x02\xc1\x38\x4d\xf6\xe9\x90\xdd\xaf\xb2\x63\x13\x13\x78\x17\xa6\x2e\xd0\x44\x5d\x3e\x58\x49\xf8\xce\xc0\xda\xff\xba\x47\x0e\xa4\x9f\xb7\x35\x48\xed\x08\xb9\xf0\xef\x91\xed\xb4\xf6\x73\x41\x35\x36\xc0\x2b\xee\x97\xe2\x65\xc8\x89\x2f\xb9\x3f\x12\x79\xee\xa1\x87\x3e\xa6\xd7\x83\xa3\x77\xfd\x78\x46\xce\xd1\x20\xe9\x2f\xbc\xb8\xaf\xac\xff\x66\x19\x8d\x27\x60\x1c\xbb\x23\x61\x3a\x1a\xff\x7c\x2e\x43\x9e\x27\x89\x32\x15\x7b\xcd\x89\xab\x51\xe8\xd6\xb3\xec\x3d\xdd\x03\xe7\x0e\x1c\x8f\x59\xb7\x06\x69\x62\x15\xf6\x1f\xfb\xe8\xa7\x6f\x7a\x0d\xcf\xdc\x49\x0f\x71\x0a\xbd\x41\x11\x6c\x0a\xeb\x49\x9a\x24\x31\x3c\x85\x68\x6c\xb0\xe4\xcb\x53\xf0\x3f\xcd\xc0\xf1\x13\xec\xef\x00\x00\x00\xff\xff\xdb\xe5\xa7\xc9\xae\x0a\x00\x00") +var _templateMigrateMigrateTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdd\x6e\xdc\x36\x13\xbd\x96\x9e\x62\x3e\x7d\x6d\xba\x1b\xac\x29\xc7\x45\x81\x76\x1b\x5f\xa4\x5e\xa7\x58\x34\xdd\xa6\x70\x8c\xf4\x32\x5c\x71\x24\x11\xa6\x48\x85\x1c\xed\x0f\x16\xfb\xee\x05\x49\x69\x7f\x62\x1b\xed\x45\x8b\xfa\x66\xe1\x19\xf2\x9c\x39\x73\x86\xa4\x76\xbb\xfc\x65\x7a\x63\xda\xad\x95\x55\x4d\x70\x75\xf9\xea\x87\x8b\xd6\xa2\x43\x4d\xf0\x96\x17\xb8\x34\xe6\x01\xe6\xba\x60\xf0\x46\x29\x08\x8b\x1c\xf8\xbc\x5d\xa1\x60\xe9\x87\x5a\x3a\x70\xa6\xb3\x05\x42\x61\x04\x82\x74\xa0\x64\x81\xda\xa1\x80\x4e\x0b\xb4\x40\x35\xc2\x9b\x96\x17\x35\xc2\x15\xbb\x1c\xb2\x50\x9a\x4e\x8b\x54\xea\x90\x7f\x37\xbf\xb9\x5d\xdc\xdd\x42\x29\x15\x42\x1f\xb3\xc6\x10\x08\x69\xb1\x20\x63\xb7\x60\x4a\xa0\x13\x32\xb2\x88\x2c\x7d\x99\xef\xf7\x69\xba\xdb\x81\xc0\x52\x6a\x84\xac\x91\x95\xe5\x84\x19\xc4\xf8\x05\xac\x25\xd5\x80\x1b\x42\x2d\xe0\x2b\xc8\xde\xf3\xe2\x81\x57\x98\x9d\xac\xbc\xd8\xef\xd3\x64\xb7\x03\xc2\xa6\x55\x9c\x10\xb2\x1a\xb9\x40\x9b\x01\xf3\x28\xbb\x1d\xf8\xbd\x1e\x4f\x36\xad\xb1\x04\xa3\x34\xc9\x0a\xa3\x09\x37\x94\xa5\x49\x56\x36\x94\xa5\x69\x92\xa1\xa6\xca\x30\x69\x72\xd4\x94\x0b\xc9\x15\x16\x21\xff\x54\x3c\x77\x9f\x55\xee\x8a\x1a\x1b\x9e\xa5\xe3\x34\x5d\x71\xeb\x61\xf3\x1c\x3e\x4a\xaa\x7f\x56\x66\xc9\xd5\xbd\x96\x9f\x3b\x9c\xcf\xc0\x21\xb9\xd0\x91\x4e\xcb\x15\x5a\xc7\x15\x48\xe1\xc0\xb4\x24\x8d\x76\x40\x26\x24\xa3\x1e\x69\x34\x0b\x38\xf3\xbe\x5d\x71\x95\xb7\x05\x35\x5f\x2a\x14\x13\xf0\xd6\x1e\x56\xc3\x5a\x2a\x05\x5c\x29\x53\x78\xed\x1c\x5e\xbd\x7e\xfd\xed\x15\x58\xae\x2b\x0c\x40\xa5\x89\x16\x06\xca\x12\x90\x17\xb5\x47\x90\xb4\x85\x11\x79\xc4\x71\x24\x5c\x18\x42\xa0\x9a\xd3\x19\x6f\xc1\xb5\x36\x04\x4b\x04\xde\xb6\x4a\xa2\x00\xa3\x21\x6c\x73\x71\x31\x57\x16\xb9\xd8\x02\x6e\xa4\x23\x96\x26\x4f\xe8\xbf\x86\xd8\x29\xf6\x38\x77\x68\xd9\xcc\x9a\xf6\xc6\xa8\xae\xd1\xc7\x76\x09\x6b\x5a\x28\x62\xb0\x2f\xe7\x9f\xe8\x55\x80\x35\x4a\xf4\xd0\x2e\x40\x04\x2d\x6b\xb4\x08\x9d\x9f\x7c\xdf\xb4\xa5\xa1\x1a\x4a\x89\x4a\x38\xe0\x5a\x00\x8a\x0a\x1d\x83\x70\x62\x04\x96\xbc\x53\x14\xcc\x2b\xb9\x72\xd8\x2b\x3f\x91\x71\xa6\xfa\x18\x3f\x53\x3c\xd7\x02\x37\x5f\x08\x96\x21\xf6\x6f\xe8\x0d\xc8\xf8\xa5\xde\x78\xf2\xc4\x70\x6a\xfb\xa2\x9f\x97\x79\x36\x2a\x5d\xf0\x11\x0a\xa3\x1d\x59\x2e\x35\x39\xe0\x27\x98\x9d\x93\xba\x82\x4f\xf7\x8b\xf9\xef\xf7\xb7\x30\x5f\xcc\x6e\xff\xf8\x34\x09\x10\xbe\xa1\x54\xa3\xc5\xd2\x58\x9c\x80\xa4\x6f\xfc\xad\x54\x98\xa6\x41\x2d\x50\x78\xc2\xa8\xe9\x4c\x29\x19\xa8\x90\xa0\x31\xb6\x9f\x6d\x85\x1b\xb9\x94\xca\x0f\xf3\x59\xfd\x50\xd4\xfe\x00\xb8\x13\x5b\x62\xaf\x1f\xb9\x12\xc2\x07\x53\xde\xca\x0d\x75\x16\x8f\x96\xf8\xf2\x64\xa5\x2f\x1e\x70\x0b\x16\x35\x6f\xbc\xa0\x67\xcc\x81\x75\x8d\x1a\xba\xb6\xb2\x5c\x48\x5d\x05\x50\xef\x47\x69\x4d\x03\xab\x4b\xf6\x8a\x5d\xc2\x48\x3a\xd7\xe1\xc5\xff\xaf\xbe\xff\x6e\xcc\x60\xf6\xcc\x18\x0d\x65\x9c\x55\xdb\x07\x8f\xb5\xc6\xd2\x7e\xc1\xed\xe0\xbf\x83\xc2\x22\x27\x5f\xe2\x69\xdd\x52\x0f\x5d\x99\xcd\xde\x3d\xe1\x2c\xd9\xee\x40\x7c\x82\x79\x4e\x7e\x4c\xf8\xfb\x2e\xcf\xe1\x2e\x42\xca\xd8\xa7\x37\xef\xe7\xe1\xd0\x0c\x05\x4c\x86\xb6\xe8\x2a\x78\xed\x87\xb0\x0d\xff\x0c\xa8\x29\x6d\x5b\x1c\x50\x1c\xd9\xae\x20\xd8\xa5\x89\xb0\x2b\x18\xfe\xfa\xcb\x96\xcd\xac\xbf\x37\xd3\xe4\x70\x7f\xce\x67\xb0\x34\x46\xa5\xfb\x50\xc9\x02\xd7\x3d\x4c\x60\x47\x07\x1c\x34\xae\x0f\xa3\xa0\x24\x6a\x62\x69\xd9\xe9\xe2\xb8\x76\xe4\x89\xce\x09\xc6\xf0\xb2\xc7\xd9\x81\x45\xea\xac\x86\x17\x31\xb0\x13\x76\x35\x05\x61\x57\x7b\x88\x94\x37\x81\xe8\xc8\xa7\xd4\xc0\x66\x31\x3e\x70\xae\x27\x1c\xb9\x01\x75\xdc\xef\x1a\x15\xb4\x81\xfe\xfd\x61\x37\xf1\x77\xe2\x67\xca\x01\x63\xac\xef\xce\xaf\xf1\x75\xfb\x2d\x4c\xda\x18\xd0\x5a\x63\x7d\x7b\xfa\x57\x6f\xe2\x23\x30\x3d\x58\xb4\xc0\x75\xbf\x63\xe4\x98\xb0\xab\x88\xc7\x18\x1b\xa7\x89\x2c\xc3\xe2\xff\x5d\x83\x96\xca\x63\x24\xbd\xb8\xb2\x21\x76\xeb\x81\xcb\x91\x7f\xe4\xf2\x1e\x7b\x0a\x5f\xaf\xb2\x40\x30\x4e\x93\x7d\x3a\xac\xee\xb3\xec\x28\x62\x02\x1f\xc2\xd4\x05\x9a\xd8\x97\x8f\x56\x12\x7e\x30\xb0\xf6\xbf\xee\x89\x03\xe9\xe7\x6d\x0d\x52\x3b\x42\x2e\xfc\x7b\x64\x3b\xad\xfd\x5c\x50\x8d\x0d\xf0\x8a\xfb\x54\xbc\x0c\x39\xf1\x25\xf7\x47\x22\xcf\x3d\xf4\xa0\x63\x7a\x3d\x38\x7a\xd7\x8f\x67\xe4\x1c\x0d\x2d\xfd\x89\x17\x0f\x95\xf5\x5f\x27\xa3\xf1\x04\x8c\x63\x77\x24\x4c\x47\xe3\x1f\xcf\xdb\x90\xe7\x49\xa2\x4c\xc5\xde\x72\xe2\x6a\x14\xd4\x7a\x96\xbd\xa7\x7b\xe4\xdc\x81\xe3\x29\xeb\xd6\x20\x4d\xac\xc2\xfe\x6d\x1f\xfd\xf4\x4d\xaf\xe1\x85\x3b\xd1\x10\xa7\xd0\x1b\x14\xc1\xa6\xb0\x9e\xa4\x49\x12\xc3\x53\x88\xc6\x06\x4b\xfe\x7a\x0a\xfe\xa3\x19\x38\x7e\x6c\xfd\x19\x00\x00\xff\xff\xaa\xcc\x20\xe7\x98\x0a\x00\x00") func templateMigrateMigrateTmplBytes() ([]byte, error) { return bindataRead( @@ -1086,12 +1086,12 @@ func templateMigrateMigrateTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/migrate/migrate.tmpl", size: 2734, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/migrate/migrate.tmpl", size: 2712, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _templateMigrateSchemaTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5b\x6f\xdb\x36\x14\x7e\xb6\x7e\xc5\x81\xe0\x15\x6d\xe0\x48\x6d\xde\x66\xc0\x0f\x41\xda\x02\x41\x87\xb4\x58\xd2\xa7\xa0\x18\x18\xea\xc8\x26\x4c\x91\x0a\x45\xa7\xf1\x34\xfd\xf7\x81\x17\x49\x94\x2d\xc7\xce\xd6\xbc\x44\x24\xcf\xf5\x3b\x37\xd2\x75\x9d\x9e\x45\x57\xb2\xdc\x2a\xb6\x5c\x69\xb8\x78\xff\xe1\xf7\xf3\x52\x61\x85\x42\xc3\x67\x42\xf1\x41\xca\x35\x5c\x0b\x9a\xc0\x25\xe7\x60\x89\x2a\x30\xe7\xea\x09\xb3\x24\xba\x5b\xb1\x0a\x2a\xb9\x51\x14\x81\xca\x0c\x81\x55\xc0\x19\x45\x51\x61\x06\x1b\x91\xa1\x02\xbd\x42\xb8\x2c\x09\x5d\x21\x5c\x24\xef\xdb\x53\xc8\xe5\x46\x64\x11\x13\xf6\xfc\x8f\xeb\xab\x4f\x37\xb7\x9f\x20\x67\x1c\xc1\xef\x29\x29\x35\x64\x4c\x21\xd5\x52\x6d\x41\xe6\xa0\x03\x65\x5a\x21\x26\xd1\x59\xda\x34\x51\x54\xd7\x90\x61\xce\x04\x42\x5c\xd1\x15\x16\x24\x06\xb7\x7d\x0e\x3f\x99\x5e\x01\x3e\x6b\x14\x19\x4c\x21\xfe\x46\xe8\x9a\x2c\x31\x86\xb8\x60\x4b\x45\x34\xc6\x70\xde\x34\xd1\xa4\xae\x41\x63\x51\x72\xa2\x11\xe2\x15\x92\x0c\x55\x0c\x89\x91\x52\xd7\x60\x78\x8d\x3c\x56\x94\x52\x69\x78\x6b\xc9\x15\x11\x4b\x84\xe9\x5f\x33\x98\x0a\x98\x2f\x60\x9a\xdc\xc8\x0c\x2b\x43\x38\x99\xc4\x75\x0d\xd3\xe4\x4a\x8a\x9c\x2d\x13\xaf\x13\x9a\x26\x35\xdb\x22\xd8\x88\x8d\xa8\xf3\x4e\xc1\x24\x5e\x32\xbd\xda\x3c\x24\x54\x16\x69\xee\xc1\x4f\x51\xe8\x34\x63\x84\x23\xd5\xe6\xbb\x7a\xe4\xf1\x09\x94\xd5\x23\x4f\x3d\x18\x2f\x50\x3b\x8a\x34\x67\xc8\xb3\x38\x7a\x17\x45\x4f\x44\x39\x07\xcf\x43\x0f\xb5\xf3\xf0\x8e\x3c\xf0\xd6\x45\x43\x91\x9e\x41\xce\x44\x06\x7a\x5b\x22\x08\x1b\x7d\x17\xba\xa5\x22\xe5\xaa\x8b\x98\x36\x6c\x33\x60\x39\xe0\x33\xab\x74\x05\x36\x6a\x4e\xc4\xd4\xb2\xcd\x17\xc0\x44\x86\xcf\x1d\x8a\xef\x7b\x25\x87\x81\xae\x6b\x2b\xf3\x11\xa6\x3a\xb9\x21\x05\x1a\x6c\xad\x89\xee\xcc\x89\x5e\x18\x36\xbb\x76\x28\xf7\xf1\xf4\x06\x50\xc9\x37\x85\xa8\x8c\xe8\x92\x54\x94\xf0\x4e\xdc\x3f\x50\x2a\x26\x74\x0e\xf1\x6f\xd5\x95\xa3\x8a\x1d\x63\x9a\x82\x51\xd0\xb2\x36\x0d\xac\x24\xcf\x2a\xeb\x7b\xbb\x99\x4b\x97\xfa\x36\x17\xbc\xc4\xa6\x89\x1d\x1a\x89\xd5\x3e\x90\xb0\x80\xfb\x1f\x67\x2e\x1e\x89\xd3\x56\x47\x93\x01\x04\xd4\xba\xaf\xfd\xa9\x8f\xc3\x64\x52\x83\x91\x3d\x77\x8a\x68\xa7\x68\x06\x77\xdb\x12\xe7\x60\x63\x9b\xb8\x33\xb3\x63\xd2\xb2\xd2\x9e\x6a\xe6\x24\xd4\xe7\x06\xc9\x29\x4d\xbe\x0b\xf6\xb8\x31\x07\xe0\xbe\xe6\xa0\xd5\x06\x67\x21\x68\x21\xf9\xb5\xa0\x0a\x0b\xd3\x2a\x9a\x06\xba\xc5\x11\xa6\x9b\x0d\xe7\x3e\x4a\xd0\x7e\xcf\xc1\x1b\xdf\x9f\x8d\xf0\xdb\x62\x9e\xd2\xe4\x96\xfd\x6d\xb9\xcd\x7f\xcb\x99\xbc\x4c\x7f\xa9\xb5\x32\xf4\xe6\xbf\xc3\x29\xb1\x08\x1d\xe6\xf8\x24\x36\x85\x8d\x8a\xfd\x98\xc3\xfd\x8f\x4a\x2b\x26\x96\x35\xf4\xa5\x6f\xd3\xd6\x0a\x32\xb6\xe3\x50\x22\xbc\x64\xcf\x47\xcc\xc9\x86\x5b\xd0\xfc\xe7\x29\x5e\xdc\xda\xdc\x30\x21\xb4\xbe\x77\xab\x39\x14\xa4\xbc\x77\xf6\x8d\x98\xb9\x9e\xc1\xf4\x69\x60\xea\xda\x7c\xf8\x7c\x79\x1a\x9a\xdd\x97\x87\x4b\x8d\xa0\x3b\x4d\x26\x5d\xc9\xd8\x14\x3e\x52\x30\xb6\x10\x87\xe5\xa2\xdb\xa8\xf7\xc5\xe2\xf2\x1d\x98\xc8\xa5\x2a\x88\x66\x52\x9c\x56\x37\x9d\xa8\x05\xbc\xf1\x35\x63\x15\xda\x92\x09\xca\xa1\xe7\xb7\xee\xf8\xca\x99\xef\x54\xaf\x3d\xfb\xa6\x58\x41\xd4\xf6\x0b\x6e\xe7\xe3\x95\xb8\xdb\x8d\xca\xb5\xaf\xc7\x9e\xb3\x0d\x5b\x48\xca\x66\x07\x2b\xb7\xab\x0a\xd3\xc3\xca\xb5\x6f\x62\x5d\x09\x0f\x8d\xbc\x37\x4b\x06\x4d\xf3\x63\x27\x47\x86\x41\xda\x5d\x3a\xe7\x3e\x4b\x85\x6c\x29\xbe\xe0\xb6\x0a\xbd\xeb\xb7\x47\x3d\xcc\x5b\x0f\x03\xf6\x5e\xab\x77\xe1\x76\x5b\x3c\x48\xee\xf1\xce\xd7\x89\x5b\x77\x90\x87\xa8\x8f\xc3\x3a\x01\xd8\xd3\x4c\x3f\x58\xcd\xf9\x7a\x1f\xb2\x7d\x70\x2f\x0e\xa1\x3b\x04\x98\x7e\x68\x01\xbe\x78\x2d\xc2\xfb\x20\x8f\xed\x34\xb3\x2e\xaa\xe9\x19\x94\xb2\xd2\xa5\x14\x08\x0a\x73\x85\x82\x32\xb1\x04\x2d\x81\x3c\x49\xe6\x26\x26\x5d\x21\x5d\x9b\x5d\x2e\x65\xd9\x0d\x45\xf3\xf7\x27\xe6\xff\x0b\xb3\x9e\xff\x38\x6c\x8e\xdc\x16\xcf\x7f\x03\xb0\xed\x01\xa1\xa0\x97\xc6\xe7\x2f\x44\xb9\xed\x8d\xf9\x3a\xf9\x2a\xbe\x97\x19\xd1\xc3\xe9\xd6\xca\x68\x0f\xe7\xbe\xdf\x24\x6d\xb3\x8d\x0e\xe8\xd8\x11\xfd\x11\x39\x1e\x14\xed\x0e\x4f\x15\x1d\x4c\xdc\xdd\x1a\x6d\x27\xa4\x4e\xae\xcd\x5d\x08\xbb\x38\xf8\x65\x98\x0b\x76\xab\xde\xeb\x35\x26\x0d\x58\xf6\xec\xeb\x61\x47\x4c\x5f\xb2\x61\x87\x64\xd9\xf3\xb0\x47\x9a\xbf\x76\xf8\xb7\x04\xdd\xb5\xa0\xa3\x38\x96\x9f\xfb\x76\xf9\xf4\x34\xe2\x0e\xe5\xd9\xa9\x45\xfd\xeb\xaa\x7a\x24\xe1\x46\xb6\x3a\xb7\xdb\x8f\x1d\x92\xf1\x59\x19\xae\xd3\x14\xfc\xe5\xd9\xcd\x3e\xc2\xb9\x1d\x72\xda\x6d\xfa\x6b\xb3\x07\x32\x9a\x78\xda\xf0\x4a\xd8\x8d\xb7\xe3\x57\xf3\x49\x50\x95\x2f\x4d\xe6\x59\x34\x34\xba\x31\x0f\x80\x7c\x23\x28\x30\xc1\xf4\xdb\x77\x50\x0f\x1e\x02\x07\x1e\x01\xaf\xbe\x0d\xec\x44\xfa\x85\x21\x13\x4e\xfa\xf0\xb8\x0f\x69\xd7\x72\x60\x01\xa7\xf6\xa2\x5d\x5b\x06\xcf\x01\x57\xf5\x44\x68\x6f\xd4\xa5\x10\x52\xbb\x8b\xc9\x88\x4d\xc1\xe9\x02\xde\xb8\xc7\x59\xb0\x59\xef\xdc\xe1\x88\xd0\xdd\x03\xc5\x25\xd2\x9d\xbb\xfc\xf6\x57\xd2\x91\xee\xb0\x23\xe0\x6a\x45\x54\x85\xba\x13\xe1\xd7\xaf\x14\x22\x39\x0f\xbd\xb2\x05\xed\x76\x5e\x27\xe8\x6b\x69\x78\xfa\xf2\xf4\xeb\x23\x42\x9a\x68\x4f\x50\xf7\x7a\x20\xbc\xd7\x34\x0a\xf5\x80\x74\x01\x02\x7f\xbe\x7d\x90\x92\xbf\xb3\x3c\x67\xa7\x31\xd5\xb5\x53\xcd\x84\xfb\x81\xc1\x9a\x6a\x5e\x2d\xa6\x45\xf0\xca\x30\xe7\x84\x57\x38\xe8\x18\x7b\xc9\xd2\x2e\x82\x6f\xf7\x6b\x84\x5f\xfc\x1b\x00\x00\xff\xff\x34\xc4\x14\x6d\x5c\x11\x00\x00") +var _templateMigrateSchemaTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5f\x6f\xdb\x36\x10\x7f\x96\x3e\xc5\x41\xf0\x8a\x36\x70\xa4\x36\x6f\x33\xe0\x87\x20\x6d\x81\xa0\x43\x5a\x2c\xe9\x53\x50\x0c\x8c\x74\xb2\x09\x53\xa4\x42\xd1\x69\x3c\x4d\xdf\x7d\xe0\x1f\x49\x94\x2c\xc7\xce\xd6\xbc\x44\x3c\xde\xff\xbb\xdf\x91\x74\x5d\x27\x67\xe1\x95\x28\x77\x92\xae\xd6\x0a\x2e\xde\x7f\xf8\xfd\xbc\x94\x58\x21\x57\xf0\x99\xa4\xf8\x20\xc4\x06\xae\x79\x1a\xc3\x25\x63\x60\x98\x2a\xd0\xfb\xf2\x09\xb3\x38\xbc\x5b\xd3\x0a\x2a\xb1\x95\x29\x42\x2a\x32\x04\x5a\x01\xa3\x29\xf2\x0a\x33\xd8\xf2\x0c\x25\xa8\x35\xc2\x65\x49\xd2\x35\xc2\x45\xfc\xbe\xdd\x85\x5c\x6c\x79\x16\x52\x6e\xf6\xff\xb8\xbe\xfa\x74\x73\xfb\x09\x72\xca\x10\x1c\x4d\x0a\xa1\x20\xa3\x12\x53\x25\xe4\x0e\x44\x0e\xca\x33\xa6\x24\x62\x1c\x9e\x25\x4d\x13\x86\x75\x0d\x19\xe6\x94\x23\x44\x55\xba\xc6\x82\x44\x60\xc9\xe7\xf0\x93\xaa\x35\xe0\xb3\x42\x9e\xc1\x0c\xa2\x6f\x24\xdd\x90\x15\x46\x10\x15\x74\x25\x89\xc2\x08\xce\x9b\x26\x0c\xea\x1a\x14\x16\x25\x23\x0a\x21\x5a\x23\xc9\x50\x46\x10\x6b\x2d\x75\x0d\x5a\x56\xeb\xa3\x45\x29\xa4\x82\xb7\x86\x5d\x12\xbe\x42\x98\xfd\x35\x87\x19\x87\xc5\x12\x66\xf1\x8d\xc8\xb0\xd2\x8c\x41\x10\xd5\x35\xcc\xe2\x2b\xc1\x73\xba\x8a\x9d\x4d\x68\x9a\x44\x93\xb9\x47\x88\xb4\xaa\xf3\xce\x40\x10\x21\x57\x2b\x11\x53\x91\x20\x57\x49\x46\x09\xc3\x54\xe9\xef\xea\x91\x45\x87\xb6\xab\x47\x96\xb8\xb0\xc7\x2c\x96\x9c\xe4\x14\x59\x16\x85\xef\xc2\xf0\x89\x48\xeb\xff\xb9\x1f\x80\xb2\x01\xdc\x91\x07\xd6\x46\xa0\x39\x92\x33\xc8\x29\xcf\x40\xed\x4a\x04\x6e\x8a\x6b\x2b\xb3\x92\xa4\x5c\x77\x05\x51\x5a\x6c\x0e\x34\x07\x7c\xa6\x95\xaa\xc0\x14\xc5\xaa\x98\x19\xb1\xc5\x12\x28\xcf\xf0\xb9\x4b\xd2\xfb\xde\xc8\xe1\x3c\xd6\xb5\xd1\xf9\x08\x33\x15\xdf\x90\x02\x75\xea\x8c\x8b\x76\xcf\xaa\x5e\x6a\x31\xb3\xb6\x49\xec\xcb\xe5\x1c\x48\x05\xdb\x16\xbc\xd2\xaa\x4b\x52\xa5\x84\x75\xea\xfe\x81\x52\x52\xae\x72\x88\x7e\xab\xae\x2c\x57\x64\x05\x93\x04\xb4\x81\x56\xb4\x69\x60\x2d\x58\x56\x99\xd8\x5b\x62\x2e\x6c\x67\x9b\x52\x3b\x8d\x4d\x13\xd9\x6c\xc4\xc6\xfa\x40\xc3\x12\xee\x7f\x9c\xd9\x7a\xc4\xd6\x5a\x1d\x06\x83\x14\xa4\x26\x7c\xe5\x76\x5d\x1d\x82\xa0\x06\xad\x7b\x61\x0d\xa5\x9d\xa1\x39\xdc\xed\x4a\x5c\x80\xa9\x6d\x6c\xf7\x34\x45\x77\x5d\xa5\x1c\xd7\xdc\x6a\xa8\xcf\x75\x26\x67\x69\xfc\x9d\xd3\xc7\xad\xde\x00\xfb\xb5\x00\x25\xb7\x38\xf7\x93\xe6\xb3\x5f\xf3\x54\x62\xa1\x27\x41\xd3\x40\xb7\x38\x22\x74\xb3\x65\xcc\x55\x09\xda\xef\x05\x38\xe7\xfb\xbd\x09\x79\x83\xd5\x59\x1a\xdf\xd2\xbf\x8d\xb4\xfe\x6f\x24\xe3\x97\xf9\x2f\x95\x92\x9a\x5f\xff\xb7\x79\x8a\x4d\x86\x0e\x4b\x7c\xe2\xdb\xc2\x54\xc5\x7c\x2c\xe0\xfe\x47\xa5\x24\xe5\xab\x1a\x7a\x64\x9b\xb6\x35\x8a\xb4\xef\x38\xd4\x08\x2f\xf9\xf3\x11\x73\xb2\x65\x26\x69\xee\xf3\x94\x28\x6e\x4d\x6f\xe8\x12\x9a\xd8\xbb\xd5\x02\x0a\x52\xde\x5b\xff\x26\xdc\xdc\xcc\x61\xf6\x34\x70\x75\xa3\x3f\x5c\xbf\x3c\x0d\xdd\xee\xe1\x61\x5b\xc3\x1b\x3e\x41\xd0\x41\xc6\xb4\xf0\x11\xc0\x18\x20\x0e\xe1\xa2\xda\xaa\xf7\x60\xb1\xfd\x0e\x94\xe7\x42\x16\x44\x51\xc1\x4f\xc3\x4d\xa7\x6a\x09\x6f\x1c\x66\x8c\x41\x03\x19\x0f\x0e\xbd\xbc\x09\xc7\x21\x67\x31\x42\xaf\xd9\xfb\x26\x69\x41\xe4\xee\x0b\xee\x16\xd3\x48\x1c\x4f\xa3\x72\xe3\xf0\xd8\x4b\xb6\x65\xf3\x59\xe9\xfc\x20\x72\x3b\x54\xe8\x19\x56\x6e\xdc\x10\xeb\x20\x3c\x74\xf2\x5e\x2f\x29\x34\xcd\x8f\x51\x8f\x0c\x8b\x34\x5e\xda\xe0\x3e\x0b\x89\x74\xc5\xbf\xe0\xae\xf2\xa3\xeb\xc9\x93\x11\xe6\x6d\x84\x9e\x78\x6f\xd5\x85\x70\xbb\x2b\x1e\x04\x73\xf9\xce\x37\xb1\x5d\x77\x29\xf7\xb3\x3e\x9d\xd6\x00\x60\xcf\x72\xfa\xc1\x58\xce\x37\xfb\x29\xdb\x4f\xee\xc5\xa1\xec\x0e\x13\x9c\x7e\x68\x13\x7c\xf1\xda\x0c\xef\x27\x79\x8a\xd2\xcc\xbb\xaa\x26\x67\x50\x8a\x4a\x95\x82\x23\x48\xcc\x25\xf2\x94\xf2\x15\x28\x01\xe4\x49\x50\x7b\x62\xa6\x6b\x4c\x37\x9a\xca\x84\x28\xbb\x43\x51\xff\xfd\x89\xf9\xff\xca\x59\x2f\x7f\x3c\x6d\x96\xdd\x80\xe7\xbf\x25\xb0\x9d\x01\xbe\xa2\x97\x8e\xcf\x5f\x98\xe5\x76\x36\xe6\x9b\xf8\x2b\xff\x5e\x66\x44\x0d\x4f\xb7\x56\x47\xbb\xb9\x70\xf3\x26\x6e\x87\x6d\x78\xc0\xc6\x48\xf5\x47\x64\x78\x50\xb5\xdd\x3c\x55\xb5\x77\xe2\x8e\x31\xda\x9e\x90\x2a\xbe\xd6\x77\x21\xec\xea\xe0\x96\x7e\x2f\x18\x52\xbd\x37\x6b\x74\x1b\xd0\xec\xd9\xe1\x61\xa4\xa6\x87\xac\x3f\x21\x69\xf6\x3c\x9c\x91\xfa\xaf\x3d\xfc\x5b\x86\xee\x5a\xd0\x71\x1c\xeb\xcf\x7d\xbf\x5c\x7b\x6a\x75\x87\xfa\xec\x54\x50\xff\x3a\x54\x4f\x34\xdc\x04\xa9\x0b\xbb\xfd\x18\xb1\x4c\x9f\x95\xfe\x3a\x49\xc0\x5d\x9e\xed\xd9\x47\x18\x33\x87\x9c\xb2\x44\x77\x6d\x76\x89\x0c\x03\xc7\xeb\x5f\x09\xbb\xe3\xed\xf8\xd5\x3c\xf0\x50\xf9\xd2\xc9\x3c\x0f\x87\x4e\x37\xfa\x01\x90\x6f\x79\x0a\x94\x53\xf5\xf6\x1d\xd4\x83\x87\xc0\x81\x47\xc0\xab\x6f\x03\xa3\x4a\xbf\x70\xc8\xf8\x27\xbd\xbf\xdd\x97\xb4\x1b\x39\xb0\x84\x53\x67\xd1\xd8\x97\xc1\x73\xc0\xa2\x9e\x70\xe5\x9c\xba\xe4\x5c\x28\x7b\x31\x99\xf0\xc9\xdb\x5d\xc2\x1b\xfb\x0c\xf3\x88\xf5\xe8\x0e\x47\xb8\xea\x1e\x28\xb6\x91\xee\xec\xe5\xb7\xbf\x92\x4e\x4c\x87\x91\x82\xab\x35\x91\x15\xaa\x4e\x85\x5b\xbf\x52\x89\x60\xcc\x8f\xca\x00\xda\x52\x5e\xa7\xe8\x6b\xa9\x65\x7a\x78\xba\xf5\x11\x25\x4d\xb8\xa7\xa8\x7b\x3d\x10\xd6\x5b\x9a\x4c\xf5\x80\x75\x09\x1c\x7f\xbe\x7d\x10\x82\xbd\x33\x32\x67\xa7\x09\xd5\xb5\x35\x4d\xb9\xfd\xfd\xc0\xb8\xaa\x5f\x2d\x7a\x44\xb0\x4a\x0b\xe7\x84\x55\x38\x98\x18\x7b\xcd\xd2\x2e\xbc\x6f\xfb\x63\x83\x5b\xfc\x1b\x00\x00\xff\xff\xad\xca\x7e\x90\x3b\x11\x00\x00") func templateMigrateSchemaTmplBytes() ([]byte, error) { return bindataRead( @@ -1106,12 +1106,12 @@ func templateMigrateSchemaTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/migrate/schema.tmpl", size: 4444, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/migrate/schema.tmpl", size: 4411, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _templatePredicateTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x8b\x14\x31\x14\x84\xcf\x93\x5f\x51\x84\x3e\xec\x2e\x4e\xb2\xee\x4d\xc1\xc3\xba\xac\xb0\x20\x83\xb0\xde\x25\x93\xbc\xee\x0e\x9b\x4e\xda\xe4\xb5\x3a\x84\xfe\xef\x92\x99\x51\x47\x4f\xde\xc2\xab\xaf\x2a\x79\x95\x5a\xf5\x8d\x78\x48\xf3\x21\xfb\x61\x64\xdc\xdd\xbe\x7e\xb3\x9d\x33\x15\x8a\x8c\x0f\xc6\xd2\x3e\xa5\x17\x3c\x45\xab\x70\x1f\x02\x8e\x50\x41\xd3\xf3\x37\x72\x4a\x7c\x1e\x7d\x41\x49\x4b\xb6\x04\x9b\x1c\xc1\x17\x04\x6f\x29\x16\x72\x58\xa2\xa3\x0c\x1e\x09\xf7\xb3\xb1\x23\xe1\x4e\xdd\xfe\x52\xd1\xa7\x25\x3a\xe1\xe3\x51\xff\xf8\xf4\xf0\xb8\x7b\x7e\x44\xef\x03\xe1\x3c\xcb\x29\x31\x9c\xcf\x64\x39\xe5\x03\x52\x0f\xbe\xb8\x8c\x33\x91\x12\x37\x7a\x5d\x85\xa8\x15\x8e\x7a\x1f\x09\x72\xce\xe4\xbc\x35\x4c\x12\x27\x65\x8b\xef\x9e\x47\xd0\x0f\xa6\xe8\xd0\x41\x7e\x32\xf6\xc5\x0c\x24\xff\x62\xb7\xeb\x2a\x36\xb5\x82\x69\x9a\x83\x61\x82\x1c\xc9\x38\xca\x12\xaa\xe5\xd4\x8a\xe6\x6e\x89\x7e\x9a\x53\x66\x5c\x89\x8d\xec\x27\x96\x42\x6c\xe4\xe0\x79\x5c\xf6\xca\xa6\x49\xf7\xe7\xc6\x34\x45\xd6\xce\x9b\x40\x96\xf5\x90\x69\x0a\x3e\xea\x21\x9b\x79\xd4\xae\x04\xf9\x1f\xa6\xf2\x35\x48\x71\x7d\xdc\x2d\x9b\x38\x10\xba\x2f\xaf\xd0\x45\xbc\x7d\x87\x4e\xed\x92\xa3\x72\x7a\xb4\xd6\xa8\x15\x5d\x54\x3b\x33\x11\xd6\xb5\x7d\x40\x6b\xef\xf7\x72\xe8\x97\x68\xd9\xa7\x88\x3e\xe5\x33\x7b\xee\xa0\xe1\xfb\xc5\x07\x47\xb9\x28\xb1\xe1\xc3\x4c\xff\x84\x35\xef\x55\x1b\xa9\x67\x4e\xd9\x0c\xa4\xde\x9f\x78\xac\xeb\xf5\x45\x2d\x7f\x4e\x3f\x03\x00\x00\xff\xff\x74\xac\x08\xf6\x50\x02\x00\x00") +var _templatePredicateTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x51\x6b\x14\x31\x14\x85\x9f\x37\xbf\xe2\x10\xf6\xa1\x2d\x6e\xa6\xf6\x4d\xc1\x87\x5a\x2a\x14\x64\x11\xea\xbb\xa4\xc9\x9d\x99\xd0\x4c\x32\xde\xdc\x51\x97\x30\xff\x5d\xb2\xbb\x6a\x15\x7c\x0b\xf7\x7c\xf7\xe4\x9e\x53\x6b\x77\xa5\xee\xf2\x7c\xe0\x30\x8c\x82\x9b\xeb\xd7\x6f\x76\x33\x53\xa1\x24\xf8\x60\x1d\x3d\xe5\xfc\x8c\x87\xe4\x0c\x6e\x63\xc4\x11\x2a\x68\x3a\x7f\x23\x6f\xd4\xe7\x31\x14\x94\xbc\xb0\x23\xb8\xec\x09\xa1\x20\x06\x47\xa9\x90\xc7\x92\x3c\x31\x64\x24\xdc\xce\xd6\x8d\x84\x1b\x73\xfd\x4b\x45\x9f\x97\xe4\x55\x48\x47\xfd\xe3\xc3\xdd\xfd\xfe\xf1\x1e\x7d\x88\x84\xf3\x8c\x73\x16\xf8\xc0\xe4\x24\xf3\x01\xb9\x87\xbc\xf8\x4c\x98\xc8\xa8\xab\x6e\x5d\x95\xaa\x15\x9e\xfa\x90\x08\x7a\x66\xf2\xc1\x59\x21\x8d\x93\xb2\xc3\xf7\x20\x23\xe8\x87\x50\xf2\xd8\x42\x7f\xb2\xee\xd9\x0e\xa4\xff\x62\x77\xeb\xaa\x36\xb5\x42\x68\x9a\xa3\x15\x82\x1e\xc9\x7a\x62\x0d\xd3\x7c\x6a\x45\xdb\x6e\x8e\x61\x9a\x33\x0b\x2e\xd4\x46\xf7\x93\x68\xa5\x36\x9a\x92\x0c\xd9\x84\xdc\x51\x92\xce\x07\x1b\xc9\x49\x37\x30\x4d\x31\xa4\x6e\x60\x3b\x8f\x9d\x2f\x51\xff\x8f\x2c\x5f\xa3\x56\x97\xc7\x14\x6c\xd3\x40\xd8\x7e\x79\x85\x6d\xc2\xdb\x77\xd8\x9a\x7d\xf6\x54\x4e\xe7\x75\x1d\x6a\xc5\x36\x99\xbd\x9d\x08\xeb\xda\xaa\x6e\x3d\xfd\x8e\x81\x7e\x49\x4e\x42\x4e\xe8\x33\x9f\xd9\x73\xda\x86\x3f\x2d\x21\x7a\xe2\x62\xd4\x46\x0e\x33\xfd\x63\xd6\x76\x2f\xda\xc8\x3c\x4a\x66\x3b\x90\x79\x7f\xe2\xb1\xae\x97\x2f\x0a\xf8\xf3\xfa\x19\x00\x00\xff\xff\x76\x8b\x5c\x5e\x3a\x02\x00\x00") func templatePredicateTmplBytes() ([]byte, error) { return bindataRead( @@ -1126,7 +1126,7 @@ func templatePredicateTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/predicate.tmpl", size: 592, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/predicate.tmpl", size: 570, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1151,7 +1151,7 @@ func templatePrivacyFilterTmpl() (*asset, error) { return a, nil } -var _templatePrivacyPrivacyTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x4d\x8f\xdb\x38\x12\x3d\x5b\xbf\xa2\x20\xb8\x01\x29\xeb\xd0\xb3\x73\xdb\x2c\x72\x08\xb2\x1d\x20\xc0\x4e\x7a\x76\x27\xf7\x80\x96\x4a\x36\xd1\x12\xa9\xa6\xa8\x76\x1b\x86\xfe\xfb\xa2\x4a\xd4\xa7\x3f\xda\x3b\xd3\x39\x75\x9b\x22\x5f\x3d\xbe\x7a\x2c\x15\x75\x3c\xae\xdf\x05\x9f\x4d\x79\xb0\x6a\xbb\x73\xf0\xeb\x2f\x7f\xff\xc7\xfb\xd2\x62\x85\xda\xc1\x17\x99\xe0\xc6\x98\x47\xf8\xaa\x13\x01\x9f\xf2\x1c\x78\x52\x05\xf4\xdc\x3e\x63\x2a\x82\xef\x3b\x55\x41\x65\x6a\x9b\x20\x24\x26\x45\x50\x15\xe4\x2a\x41\x5d\x61\x0a\xb5\x4e\xd1\x82\xdb\x21\x7c\x2a\x65\xb2\x43\xf8\x55\xfc\xd2\x3d\x85\xcc\xd4\x3a\x0d\x94\xe6\xe7\xff\xfe\xfa\xf9\xfe\xdb\x1f\xf7\x90\xa9\x1c\xc1\x8f\x59\x63\x1c\xa4\xca\x62\xe2\x8c\x3d\x80\xc9\xc0\x8d\x82\x39\x8b\x28\x82\x77\xeb\xa6\x09\x82\xe3\x11\x52\xcc\x94\x46\x08\x4b\xab\x9e\x65\x72\x08\xa1\x1d\x7f\x0f\x7b\xe5\x76\x80\x2f\x0e\x75\x0a\x4b\x08\x7f\x97\xc9\xa3\xdc\x62\x38\x9a\xf9\xbe\x69\x82\xc5\xf1\x08\x0e\x8b\x32\x97\x0e\x21\xdc\xa1\x4c\xd1\x86\x20\x08\xe5\x78\x04\x5a\x4b\x78\xaa\x28\x8d\x75\x10\x05\x8b\xf0\x78\x84\xa5\xf8\x6c\x74\xa6\xb6\xc2\x63\x42\xd3\x84\x41\xb0\x08\xb7\xca\xed\xea\x8d\x48\x4c\xb1\xce\xbc\x80\x6b\xd4\x6e\xdd\x05\x0c\x62\x66\xbc\x2c\x1f\xb7\xf0\xe1\x23\x6c\x64\x85\xe7\xb0\x82\xe0\x59\x5a\x8a\xb5\x5e\x93\xf4\x66\x0f\x85\x3c\xc0\x06\xc1\xa2\xab\xad\xc6\x14\x36\x07\xb0\x75\x8e\x15\x38\x03\x4a\xa7\x2a\x21\xf2\x6e\x27\x1d\xcb\x57\x9a\x5c\x25\x07\x5e\x8e\xcf\x32\xaf\xa5\x53\x46\x43\xb5\x33\x75\x9e\x82\x43\x5b\x28\x4d\xf3\x59\x1f\xa9\x41\x72\x88\x14\x13\x55\x29\xa3\x45\xb0\x68\x63\x7e\x04\x4f\x5b\xf0\xef\x80\xf1\xfe\x85\xfa\xf0\x73\xd9\xa4\x14\x61\x44\x86\x23\x0e\x5c\xe8\x67\x4b\xe5\x8f\x47\x55\xbe\x25\x95\xc4\x68\xa7\x74\x8d\xb4\x94\x26\x6b\x7c\x71\x0c\x26\x82\x05\xc7\x1a\x48\xd0\xcf\x36\x97\xef\xc1\x4a\xbd\x45\x58\x76\x8c\x29\xaf\xb9\xaa\x1c\x84\xac\x5a\x08\x21\x31\x0e\x21\xa4\x35\xec\x4d\x8a\x4e\x26\xe8\x57\x34\x4d\xe6\x37\x50\x91\x00\x99\xb1\x85\x74\x0e\x53\xd8\x5b\x59\x96\x98\xce\x67\x8f\xd5\xc9\x6a\x9d\x9c\xa0\x45\x2d\x04\x54\xce\x2a\xbd\x5d\x81\x04\x21\x84\xd2\x0e\x2d\xb9\xf2\xd8\xc4\x80\xd6\x1a\x0b\xc7\x60\xb1\x68\x03\x43\x56\x38\x71\x4f\x83\xdd\xe2\xbf\x85\x1f\xe0\x6e\x1f\xae\x80\x28\xe8\x34\x92\xab\x79\x98\x58\x08\x11\x07\x8b\x86\x55\xe8\xce\x09\x5b\xa4\x9d\xf2\xd9\x68\x47\x12\x26\x16\xa5\xc3\x0a\x24\x68\xdc\xb3\xca\x34\x9a\x59\x53\xb0\xcc\x5b\xf5\x8c\x1a\x4a\x69\xa9\xec\x74\x4f\xc9\x0c\x84\x25\x7d\xca\xfa\x2d\x83\x74\x4e\x26\x3b\x4e\xaf\x13\x01\x6f\x7f\x16\x30\x9a\x62\x09\x3f\xbc\x1a\x30\x78\xf7\xf1\x7c\x02\xc9\xe1\xd5\x18\xcc\x76\x0e\x79\x40\x8a\x83\xe9\x96\xbf\x58\x53\x74\x68\x16\x9d\x55\xf8\x4c\x56\xec\x9d\x37\x50\xe8\xb7\xdf\x91\x98\x6e\x65\x04\x14\x25\xee\x65\x4e\x35\x86\x88\xf7\xb0\x82\x8d\x31\x79\x7c\x85\xf9\x0c\x88\x09\xbb\x43\x89\xbe\xba\xfc\xa7\x46\x7b\xf8\x6f\x9d\xa3\xaf\xa2\x2d\xd9\xde\x2a\xcc\x37\x55\x7a\x0b\xfb\x1d\xba\x1d\x5a\x90\xbc\xec\x89\x96\x51\xbd\xe7\xd2\x81\x29\x48\x9d\x82\x29\xe9\x34\xc9\x3c\x3f\x40\x61\x52\x95\x1d\x38\x43\x8b\x21\xc4\x70\x7e\xfa\xb1\x81\xc4\xef\xad\x40\x89\x29\x36\xcc\xa3\xa8\x73\xa7\xca\x1c\x7d\xac\xf6\x50\x2b\xed\x0c\x48\xa8\x94\xde\xe6\x9d\xa6\x5d\x08\x0f\x30\x0b\xd2\x8e\xd2\x59\x1d\xef\xf6\x0b\x69\xcd\x32\x28\x3e\x72\x32\x95\xa5\xa3\xf7\x95\xf1\xc5\x90\x54\xa8\x2b\x04\x93\xd1\x3a\x63\x53\xa5\xa5\x3d\x00\xe5\x88\x36\x59\x81\xac\xc6\xc4\x44\xab\xe9\x14\x9f\x26\x47\x27\x26\xec\xca\x7f\xd3\xb4\x04\xfd\x59\x64\x7e\xf7\xcf\x32\xef\x2b\x41\x46\xf9\x5a\xc1\x53\xec\xad\x11\x65\x53\xfc\x98\xa7\xf3\xd0\x39\x8b\xac\xe0\xe9\x52\xac\x91\x5d\xfa\x20\x33\x5f\xfc\x56\x3b\xae\x8d\x57\xac\xb1\xdf\xa9\x64\xd7\x1a\x04\xab\x99\x3f\x0a\xbf\xfc\x35\x8b\x28\xca\x29\x99\x64\x12\x6f\x48\xe1\x78\x78\xc2\xeb\xa2\x5b\xfa\xc8\x57\x0d\x33\x83\x39\x0d\x38\xb1\xcd\x98\xc5\x25\xe7\xb4\x6a\xf0\x5e\xab\x9b\xdc\x33\x25\xea\x0d\x74\x12\xe9\x55\x0f\x75\x2b\xe6\x36\xfa\xad\x87\x9f\xda\xa9\x18\xd9\x69\x1e\x2d\x9e\xac\x3c\x6f\xaa\xe2\x4a\xf0\x53\x5f\x15\x5d\x81\xf4\x42\x6f\xad\xa9\xcb\xee\xe4\x90\x21\x7a\x15\x38\x35\xaa\x17\xc2\xcf\xaf\x9c\xad\x13\x2e\xcc\xec\xdf\x71\xa5\x18\x92\x38\x33\x85\x8f\xd8\x1f\x0e\x7a\x9f\xee\xa5\x4d\xab\xf1\x2b\xdf\x99\x8e\x44\x6f\x8a\x56\x15\x5f\xa7\x5b\xa8\x37\x39\x62\x1e\x9f\x9f\x8a\x09\x5e\x77\xee\xe6\x29\xbb\x40\x98\xb5\x42\x90\xf0\x3a\xe5\x37\xc9\xa1\x8f\xd2\x4d\x10\x73\xe0\x51\x7a\x79\x4b\x93\x33\xdc\x9e\x8e\x79\xb5\xb8\x9c\xff\x93\x32\x3a\x45\xeb\x71\x8e\xa3\x17\xca\xb4\x6c\x78\x2a\x9f\xf2\xbd\x3c\x54\xdc\x7b\xf1\xd2\xbe\xb1\xe2\x10\x6d\x2b\x38\x6a\xb6\xe6\xbd\x2f\x4b\x3a\xc3\x88\xe2\x33\x94\x46\x5e\x57\x2f\x98\x76\xef\xdb\x23\xaf\x6a\x26\x64\xa8\x01\x7c\x9d\xcb\xbc\xf1\x1d\x31\xe9\x00\xfe\x2f\x22\xb4\xa8\xe9\xcb\xfa\xe4\xd9\xe8\x5c\x4d\x7b\x22\x9a\xde\x55\x87\xc9\x8a\xc9\x49\xb8\xf1\x95\x36\x66\x26\xba\x38\xaf\x44\x18\xfc\x75\x7b\xcd\xbb\x18\x87\x37\xee\x81\xce\x6c\x9d\x4e\xd7\xd9\x02\x1b\x0f\x62\xac\xd7\xe0\x07\x4f\x85\x1f\xfa\x5a\xf6\xf3\x7a\xe2\xe5\xb6\xc1\x93\x7d\x43\xdb\x07\xf3\x89\xbd\x84\x1a\xbd\xc6\xea\xba\x05\x66\xbb\x3d\x12\x5a\x33\x68\x9e\xcc\x27\xbc\x5a\xe1\x7e\xdc\x90\xdd\x44\x50\x98\xbe\xbd\xbc\x1a\xea\x7a\x65\xfa\x71\x5b\x9a\x67\x01\xd7\x6b\x78\xd0\xdd\xec\x87\x12\x6d\x9b\x06\x5f\x3d\x7d\xe3\xd2\x5e\x33\x38\x35\x46\xe7\x07\xa0\xab\x84\x1f\xec\x13\x67\xba\xb5\x3e\x49\x67\x50\x23\x46\x18\xab\xbf\x02\x53\x8e\x69\x3f\x94\x31\x5c\xc8\xce\xfc\x85\x1b\xb5\x79\xfe\x33\x35\x7a\xa1\x32\x28\xc4\x43\x19\xc5\xe2\x6b\x15\x99\x92\xef\x00\xfd\x6d\x8e\x6f\xad\x67\xeb\xf5\x62\xd1\x0c\x97\x3e\xbe\xc6\x2e\x9a\xe1\x16\xa3\x0f\x27\x1b\x3e\x57\xb8\xa8\x52\xd1\xa5\xa0\x2a\x31\xa1\x26\x2e\xbd\x2c\xe1\x45\xcc\xe8\x06\xd5\xe8\xef\x87\x8f\x17\x64\xfb\xf1\x27\x44\xf3\xfb\x26\x52\x59\x14\x0e\x93\xbb\x0f\x34\x1f\x06\xfe\x70\x57\xd1\x4b\x4c\x1b\xd7\x75\xb0\xe1\xca\x2b\x1e\xb3\x66\x1d\xd8\x25\x93\x90\x2f\x58\xd9\xd1\x47\x02\xfe\x3a\xb0\x14\xdf\x0c\xb5\xcc\xfe\xdb\xd3\x52\xcb\x82\xb7\x59\x5a\xa5\x1d\x2c\xb5\xf8\x46\x03\xe1\xa4\xd9\x0f\xfb\xd9\x5c\xd4\xba\xd9\x19\x84\xef\xee\x2a\x71\x57\x85\xed\x4e\x96\xba\x3d\xa3\x8c\xe0\x3f\x35\x7c\xdf\x21\xf4\x61\x9a\xe6\xc6\x6b\x4f\xdf\xb5\x32\xc6\xa4\x73\x95\xa3\x9b\x8f\x08\x16\x8c\x37\x0e\x70\xb9\x67\xe5\xa9\x4d\xd3\xf7\xaa\x8b\x49\x9f\x36\xbf\x92\x74\x5f\x37\xa2\x6c\x0c\xff\xd7\x7a\x32\x3a\x36\x4f\x2b\x30\x8f\x24\xe1\x93\x88\xc6\xac\xfe\x49\xc3\xe3\x53\x34\x5c\x8e\x26\xa7\xe6\x8a\x7b\x6a\x8d\x2f\x25\x26\x0e\x53\xaf\x11\x63\xdf\x7d\x5f\x41\x3b\x3e\x56\x21\x6c\x91\x9b\x60\xe4\x82\x13\x13\xcc\xad\x3f\xf3\xc1\x65\x1b\x74\x0b\x7f\xb2\x13\x26\xef\xbc\xb7\x31\x43\xdf\x06\x27\x32\xcf\x27\xf7\x96\xcb\x76\xf8\x6b\xfd\x2e\xd7\xd2\xce\x14\xc5\x6d\xa6\x98\x97\xd2\xdb\x4c\xd1\xcb\x75\xdd\x17\xc5\xc9\x67\x35\xfa\x5f\x65\xb0\x14\x5f\x50\xba\xda\xe2\xbd\x96\x9b\x1c\x53\x08\x51\xbb\xa7\xbc\x77\xc5\xf0\x1d\xdb\x47\x5f\x67\x2a\x77\x68\x43\x58\xb6\xdf\xb3\xc7\x88\xdd\xbf\xff\x0b\x00\x00\xff\xff\x0a\x9c\x46\x5d\x07\x18\x00\x00") +var _templatePrivacyPrivacyTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x4d\x6f\xe3\x38\x12\x3d\x5b\xbf\xa2\x20\x38\x80\xd4\xeb\xa6\x67\xe7\xb6\xbd\xe8\x43\x23\x9b\x00\x0d\xec\x74\x66\x77\xfa\xde\x60\xa4\x92\x4d\x44\x22\x15\x8a\x8a\x63\x18\xfa\xef\x8b\x2a\x51\x9f\xfe\x88\x77\x26\x7d\x4a\x4c\x91\xaf\x1e\x5f\x3d\x96\x8a\x3a\x1c\xd6\x1f\x82\x5b\x53\xee\xad\xda\x6c\x1d\xfc\xfa\xcb\xdf\xff\xf1\xb1\xb4\x58\xa1\x76\x70\x2f\x13\x7c\x34\xe6\x09\xbe\xea\x44\xc0\x97\x3c\x07\x9e\x54\x01\x3d\xb7\x2f\x98\x8a\xe0\xfb\x56\x55\x50\x99\xda\x26\x08\x89\x49\x11\x54\x05\xb9\x4a\x50\x57\x98\x42\xad\x53\xb4\xe0\xb6\x08\x5f\x4a\x99\x6c\x11\x7e\x15\xbf\x74\x4f\x21\x33\xb5\x4e\x03\xa5\xf9\xf9\xbf\xbf\xde\xde\x7d\xfb\xe3\x0e\x32\x95\x23\xf8\x31\x6b\x8c\x83\x54\x59\x4c\x9c\xb1\x7b\x30\x19\xb8\x51\x30\x67\x11\x45\xf0\x61\xdd\x34\x41\x70\x38\x40\x8a\x99\xd2\x08\x61\x69\xd5\x8b\x4c\xf6\x21\xb4\xe3\x1f\x61\xa7\xdc\x16\xf0\xd5\xa1\x4e\x61\x09\xe1\xef\x32\x79\x92\x1b\x0c\x47\x33\x3f\x36\x4d\xb0\x38\x1c\xc0\x61\x51\xe6\xd2\x21\x84\x5b\x94\x29\xda\x10\x04\xa1\x1c\x0e\x40\x6b\x09\x4f\x15\xa5\xb1\x0e\xa2\x60\x11\x1e\x0e\xb0\x14\xb7\x46\x67\x6a\x23\x3c\x26\x34\x4d\x18\x04\x8b\x10\xb5\xdb\x18\xa1\xcc\x1a\xb5\x5b\x77\x51\x82\x98\x69\x2e\xcb\xa7\x0d\x7c\xfa\x0c\x8f\xb2\xc2\x53\x00\x41\xf0\x22\x2d\x05\x58\xaf\x49\x6f\xb3\x83\x42\xee\xe1\x11\xc1\xa2\xab\xad\xc6\x14\x1e\xf7\x60\xeb\x1c\x2b\x70\x06\x94\x4e\x55\x42\x8c\xdd\x56\x3a\xd6\xac\x34\xb9\x4a\xf6\xbc\x1c\x5f\x64\x5e\x4b\xa7\x8c\x86\x6a\x6b\xea\x3c\x05\x87\xb6\x50\x9a\xe6\xb3\x28\x52\x83\xe4\x10\x29\x26\xaa\x52\x46\x8b\x60\xd1\xc6\xfc\x0c\x9e\xb6\xe0\xdf\x01\xe3\xfd\x0b\xf5\xfe\xe7\xb2\x49\x29\xc2\x88\x0c\x47\x1c\xb8\xd0\xcf\x96\xca\x1f\x4f\xaa\x7c\x4f\x2a\x89\xd1\x4e\xe9\x1a\x69\x29\x4d\xd6\xf8\xea\x18\x4c\x04\x0b\x8e\x35\x90\xa0\x9f\x6d\x2e\x3f\x82\x95\x7a\x83\xb0\xec\x18\x53\x5e\x73\x55\x39\x08\x59\xb5\x10\x42\x62\x1c\x42\x48\x6b\xd8\x90\x14\x9d\x4c\xd0\xaf\x68\x9a\xcc\x6f\xa0\x22\x01\x32\x63\x0b\xe9\x1c\xa6\xb0\xb3\xb2\x2c\x31\x9d\xcf\x1e\xab\x93\xd5\x3a\x39\x42\x8b\x5a\x08\xa8\x9c\x55\x7a\xb3\x02\x09\x42\x08\xa5\x1d\xda\x4c\x26\x78\x68\x62\x40\x6b\x8d\x85\x43\xb0\x58\xb4\x81\x21\x2b\x9c\xb8\xa3\xc1\x6e\xf1\xdf\xc2\x4f\x70\xb3\x0b\x57\x40\x14\x74\x1a\xc9\xd5\x3c\x4c\x2c\x84\x88\x83\x45\xc3\x2a\x74\x87\x83\x2d\xd2\x4e\xb9\x35\xda\x91\x84\x89\x45\xe9\xb0\x02\x09\x1a\x77\xac\x32\x8d\x66\xd6\x14\x2c\xf3\x46\xbd\xa0\x86\x52\x5a\xaa\x35\xdd\x53\x32\x03\x61\x49\x9f\xb2\x7e\xcb\x20\x9d\x93\xc9\x96\xd3\xeb\x44\xc0\xdb\x9f\x05\x8c\xa6\x58\xc2\x0f\xaf\x06\x0c\xde\x7d\x3c\x9f\x40\x72\x78\x35\x06\xb3\x9d\x42\x1e\x90\xe2\x60\xba\xe5\x7b\x6b\x8a\x0e\xcd\xa2\xb3\x0a\x5f\xc8\x8a\xbd\xf3\x06\x0a\xfd\xf6\x3b\x12\xd3\xad\x8c\x80\xa2\xc4\xbd\xce\xa9\xc6\x10\xf1\x1e\x56\xf0\x68\x4c\x1e\x5f\x60\x3e\x03\x62\xc2\x6e\x5f\xa2\xaf\x2e\xff\xa9\xd1\xee\xff\x5b\xe7\xe8\x4b\x67\x4b\xb6\xb7\x0a\xf3\x4d\x95\xde\xc0\x6e\x8b\x6e\x8b\x16\x24\x2f\x7b\xa6\x65\x54\xe4\xb9\x74\x60\x0a\x52\xa7\x60\x4a\x3a\x4d\x32\xcf\xf7\x50\x98\x54\x65\x7b\xce\xd0\x62\x08\x31\x9c\x9f\x7e\x6c\x20\xf1\x7b\x2b\x50\x62\x8a\x47\xe6\x51\xd4\xb9\x53\x65\x8e\x3e\x56\x7b\xa8\x95\x76\x06\x24\x54\x4a\x6f\xf2\x4e\xd3\x2e\x84\x07\x98\x05\x69\x47\xe9\xac\x8e\x77\x7b\x4f\x5a\xb3\x0c\x8a\x8f\x9c\x4c\x65\xe9\xe8\x25\x65\x7c\x31\x24\x15\xea\x0a\xc1\x64\xb4\xce\xd8\x54\x69\x69\xf7\x40\x39\xa2\x4d\x56\x20\xab\x31\x31\xd1\x6a\x3a\xc5\xa7\xc9\xd1\x91\x09\xbb\xf2\xdf\x34\x2d\x41\x7f\x16\x99\xdf\xdd\x8b\xcc\xfb\x4a\x90\x51\xbe\x56\xf0\x1c\x7b\x6b\x44\xd9\x14\x3f\xe6\xe9\x3c\x74\xca\x22\x2b\x78\x3e\x17\x6b\x64\x97\x3e\xc8\xcc\x17\xbf\xd5\x8e\x6b\xe3\x05\x6b\xec\xb6\x2a\xd9\xb6\x06\xc1\x6a\xe6\x8f\xc2\x2f\x7f\xcb\x22\x8a\x72\x4a\x26\x99\xc4\x1b\x52\x38\x1e\x9e\xf0\x3a\xeb\x96\x3e\xf2\x45\xc3\xcc\x60\x8e\x03\x4e\x6c\x33\x66\x71\xce\x39\xad\x1a\xbc\xd7\xea\x2a\xf7\x4c\x89\x7a\x03\x1d\x45\x7a\xd3\x43\xdd\x8a\xb9\x8d\x7e\xeb\xe1\xa7\x76\x2a\x46\x76\x9a\x47\x8b\x27\x2b\x4f\x9b\xaa\xb8\x10\xfc\xd8\x57\x45\x57\x20\xbd\xd0\x1b\x6b\xea\xb2\x3b\x39\x64\x88\x5e\x05\x4e\x8d\xea\x85\xf0\xf3\x2b\x67\xeb\x84\x0b\x33\xfb\x77\x5c\x29\x86\x24\xce\x4c\xe1\x23\xf6\x87\x83\xde\xa7\x3b\x69\xd3\x6a\xfc\xca\x77\xa6\x23\xd1\x9b\xa2\x55\xc5\xd7\xe9\x16\xea\x5d\x8e\x98\xc7\xe7\xa7\x62\x82\xd7\x9d\xbb\x79\xca\xce\x10\x66\xad\x10\x24\xbc\x4d\xf9\x5d\x72\xe8\xa3\x74\x13\xc4\x1c\x78\x94\x5e\xde\xd2\xe4\x0c\xb7\xa7\x63\x5e\x2d\xce\xe7\xff\xa8\x8c\x4e\xd1\x7a\x9c\xc3\xe8\x85\x32\x2d\x1b\x9e\xca\x97\x7c\x27\xf7\x15\xf7\x5e\xbc\xb4\x6f\xac\x38\x44\xdb\x0a\x8e\x9a\xad\x79\xef\xcb\x92\xce\x30\xa2\xf8\x04\xa5\x91\xd7\xd5\x2b\xa6\xdd\xfb\xf6\xc0\xab\x9a\x09\x19\x6a\x00\xdf\xe6\x32\x6f\x7c\x47\x4c\x3a\x80\xff\x8b\x08\x2d\x6a\xfa\xb2\x3e\x79\x36\x3a\x57\xd3\x9e\x88\xa6\x77\xd5\x61\xb2\x62\x72\x12\xae\x7c\xa5\x8d\x99\x89\x2e\xce\x1b\x11\x06\x7f\x5d\x5f\xf3\xce\xc6\xe1\x8d\x7b\xa0\x13\x5b\xa7\xd3\x75\xb2\xc0\xc6\x83\x18\xeb\x35\xf8\xc1\x63\xe1\x87\xbe\x96\xfd\xbc\x9e\x78\xb9\x6d\xf0\x64\xdf\xd0\xf6\xc1\x7c\x62\xcf\xa1\x46\x6f\xb1\xba\x6c\x81\xd9\x6e\x0f\x84\xd6\x0c\x9a\x27\xf3\x09\x6f\x56\xb8\x1f\x57\x64\x37\x11\x14\xa6\x6f\x2f\x2f\x86\xba\x5c\x99\x7e\x5c\x97\xe6\x59\xc0\xf5\x1a\x1e\x74\x37\xfb\xa1\x44\xdb\xa6\xc1\x57\x4f\xdf\xb8\xb4\xd7\x0c\x4e\x8d\xd1\xf9\x1e\xe8\x2a\xe1\x07\xfb\xc4\x99\x6e\xad\x4f\xd2\x09\xd4\x88\x11\xc6\xea\xaf\xc0\x94\x63\xda\x0f\x65\x0c\x67\xb2\x33\x7f\xe1\x46\x6d\x9e\xff\x4c\x8d\x5e\xa8\x0c\x0a\xf1\x50\x46\xb1\xf8\x5a\x45\xa6\xe4\x3b\x40\x7f\x9b\xe3\x5b\xeb\xc9\x7a\xbd\x58\x34\xc3\xa5\x8f\xaf\xb1\x8b\x66\xb8\xc5\xe8\xfd\xd1\x86\x4f\x15\x2e\xaa\x54\x74\x29\xa8\x4a\x4c\xa8\x89\x4b\xcf\x4b\x78\x16\x33\xba\x42\x35\xfa\xfb\xe9\xf3\x19\xd9\x7e\xfc\x09\xd1\xfc\xbe\x89\x54\x16\x85\xc3\xe4\xee\x03\xcd\xa7\x81\x3f\xdc\x54\xf4\x12\xd3\xc6\x75\x1d\x6c\xb8\xf2\x8a\xc7\xac\x59\x07\x76\xce\x24\xe4\x0b\x56\x76\xf4\x91\x80\xbf\x0e\x2c\xc5\x37\x43\x2d\xb3\xff\xe0\xb4\xd4\xb2\xe0\x6d\x96\x56\x69\x07\x4b\x2d\xbe\xd1\x40\x38\x69\xf6\xc3\x7e\x36\x17\xb5\x6e\x76\x06\xe1\x87\x9b\x4a\xdc\x54\x61\xbb\x93\xa5\x6e\xcf\x28\x23\xf8\x4f\x0d\xdf\xb7\x08\x7d\x98\xa6\xb9\xf2\xda\xd3\x77\xad\x8c\x31\xe9\x5c\xe5\xe8\xe6\x23\x82\x05\xe3\x8d\x03\x9c\xef\x59\x79\x6a\xd3\xf4\xbd\xea\x62\xd2\xa7\xcd\xaf\x24\xdd\xd7\x8d\x28\x1b\xc3\xff\xb5\x9e\x8c\x8e\xcd\xf3\x0a\xcc\x13\x49\xf8\x2c\xa2\x31\xab\x7f\xd2\xf0\xf8\x14\x0d\x97\xa3\xc9\xa9\xb9\xe0\x9e\x5a\xe3\x6b\x89\x89\xc3\xd4\x6b\xc4\xd8\x37\xdf\x57\xd0\x8e\x8f\x55\x08\x5b\xe4\x26\x18\xb9\xe0\xc8\x04\x73\xeb\xcf\x7c\x70\xde\x06\xdd\xc2\x9f\xec\x84\xc9\x3b\xef\x7d\xcc\xd0\xb7\xc1\x89\xcc\xf3\xc9\xbd\xe5\xbc\x1d\xfe\x5a\xbf\xcb\xb5\xb4\x33\x45\x71\x9d\x29\xe6\xa5\xf4\x3a\x53\xf4\x72\x5d\xf6\x45\x71\xf4\x59\x8d\xfe\x57\x19\x2c\xc5\x3d\x4a\x57\x5b\xbc\xd3\xf2\x31\xc7\x14\x42\xd4\xee\x39\xef\x5d\x31\x7c\xbc\xf6\xd1\xd7\x99\xca\x1d\xda\x10\x96\xed\x47\xec\x31\x62\xf7\xef\xff\x02\x00\x00\xff\xff\x2d\x5a\x14\xf5\xfc\x17\x00\x00") func templatePrivacyPrivacyTmplBytes() ([]byte, error) { return bindataRead( @@ -1166,12 +1166,12 @@ func templatePrivacyPrivacyTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/privacy/privacy.tmpl", size: 6151, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/privacy/privacy.tmpl", size: 6140, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _templateRuntimeTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x4b\x8f\xdb\x38\x12\x3e\x5b\xbf\xa2\x56\xf0\x02\x56\xc3\x4d\x27\xb9\x6d\x16\x3e\x64\xf3\xd8\x18\xd8\x04\xc1\x26\x93\x4b\xd0\x18\xd0\x52\xc9\xe2\xb4\x4c\x6a\x48\xaa\x63\xc3\xd0\x7f\x5f\xf0\x25\x51\xf2\x63\x7a\xe7\x34\x97\x6e\x49\x2c\xd6\xe3\xab\xaf\x8a\x45\x9f\x4e\xab\xbb\xe4\xad\x68\x8e\x92\xed\x2a\x0d\xaf\x5e\xbc\xfc\xc7\x7d\x23\x51\x21\xd7\xf0\x81\xe6\xb8\x15\xe2\x11\x36\x3c\x27\xf0\xa6\xae\xc1\x0a\x29\x30\xeb\xf2\x09\x0b\x92\x7c\xab\x98\x02\x25\x5a\x99\x23\xe4\xa2\x40\x60\x0a\x6a\x96\x23\x57\x58\x40\xcb\x0b\x94\xa0\x2b\x84\x37\x0d\xcd\x2b\x84\x57\xe4\x45\x58\x85\x52\xb4\xbc\x48\x18\xb7\xeb\xff\xd9\xbc\x7d\xff\xf9\xeb\x7b\x28\x59\x8d\xe0\xbf\x49\x21\x34\x14\x4c\x62\xae\x85\x3c\x82\x28\x41\x47\xc6\xb4\x44\x24\xc9\xdd\xaa\xeb\x92\xc4\xc6\xf0\xcd\x6c\x69\xb9\x66\x7b\x04\x8d\xfb\xa6\xa6\x1a\x61\x87\x1c\x25\xd5\xa8\xac\x46\x95\x57\xb8\xa7\xf7\x4a\x33\x9d\x57\x8c\xef\xa0\x16\x3b\x96\x03\xe5\x05\x54\xa2\x2e\xac\x50\xb2\x17\x45\x5b\x23\x3c\xa1\x54\x4c\x18\x4f\xa8\x86\x9f\x54\x41\x6b\x22\xd2\xa2\x57\x69\x35\x52\xa5\x50\x2b\x92\x24\x1b\x0d\x15\x55\xf0\x0a\x4a\x21\xf7\x54\x2b\x02\x6f\x20\xf5\xee\xa4\xd0\xd0\xfc\x91\xee\xd0\x29\x53\x95\x68\xeb\x02\xb6\x08\xb8\x6f\xf4\xf1\x9e\xed\x1b\x21\x35\x16\x3e\xee\x64\x4f\x19\xef\x77\x94\x42\x7a\xb7\x15\xfc\x64\xba\x82\x4a\x88\x47\x05\x42\x42\x23\x6a\x96\x33\x54\xb0\x68\x84\x46\xae\x19\xad\x21\x3f\xe6\x35\xcb\xbd\xc6\x8c\x58\x4c\x14\xe6\x82\x17\xde\x2f\x93\x9e\x10\x40\x9c\x9f\x14\xb9\xee\xdd\x5c\x5a\x44\x62\xe7\x80\xa9\x84\x0b\x0d\x1c\x73\x54\x8a\xca\x23\x2c\xb8\x00\xd1\x68\x83\x90\x71\x71\x62\x18\xce\x0d\x07\xf8\x1e\x11\x9b\x64\x4b\xf3\xc7\x9f\x54\x16\xea\x3e\x17\xfb\x86\x6a\xb6\x65\x35\xd3\x47\x17\x61\x23\xf1\x89\x89\x56\x85\x14\x28\x93\x7a\xe4\x7a\xc8\x36\x14\x58\x32\x8e\x3d\xc0\x2b\xeb\x7d\xd7\x25\xb3\xd3\x69\xc8\xfd\x00\xff\xdc\xac\x9d\x4e\x80\xbc\x80\x2b\x1a\x9a\xc7\x5d\xaf\xc1\x7a\x81\x07\x6d\xc4\xe7\x90\x7e\x71\xa8\xa4\x91\x42\x23\x78\xc5\x16\x09\x5a\xbc\x31\xf3\x38\xf7\x9c\x7a\xbd\x86\x39\xf9\x64\x9f\x37\xbc\x14\x61\x99\x95\x26\x9f\x5e\x88\x7c\xf7\xc4\x0b\xef\x5f\xdb\xbd\x15\xcc\x05\x57\x1a\x16\xd6\xf0\xbd\xf3\x71\xba\xc5\xba\x35\x0b\x6f\x6b\x48\x4f\x27\xeb\x4f\x0a\xab\x15\x84\xcf\x0e\x4c\x5b\xac\x3b\xe4\xc4\xeb\x0b\xde\x9e\x2b\x0f\xf6\x67\x33\xf3\x34\x51\x6a\x3e\xdd\x56\x98\xc5\x60\xdc\xcc\x41\x1a\xbe\x0f\xa8\x56\x48\x0b\x94\x1e\x54\xb3\x34\x77\xf4\x7f\xbd\x86\x17\x5e\x9f\xa4\x7c\x87\x30\xe7\x0e\xdc\xcf\xa2\x40\xd5\xc3\xce\xdb\xfd\xc7\x20\x3f\xe7\xe4\x73\x78\xed\x3a\x87\xba\xfb\xf6\xc5\x14\xd2\xd1\x7d\x1c\xb6\xac\x81\x16\x45\xf4\xfe\xd2\x09\xc4\x59\xad\x62\x41\xf7\x32\xc8\x8f\xa2\x35\xd2\x52\x37\x8f\x3b\xe3\x49\x49\x6b\x85\xbd\x0f\x15\x55\x1f\x18\xd6\x96\x69\x5f\x73\xd1\x58\x18\x06\xf9\x35\xe0\xef\x30\x27\x76\x85\x78\x26\x8e\x10\x1b\x43\x6a\x82\x72\x1b\xbb\x0e\x4c\x5b\x84\x97\x4a\x87\x12\xbc\x0f\xfd\x71\xe5\xff\x93\x9d\x00\x5b\x53\x9e\x85\x3e\x88\xeb\xf4\x5e\x49\xdc\x31\xa5\x4d\x4a\xe6\x3d\xcf\x5d\x34\xc9\x6c\xb6\x5a\xb9\xba\xbf\xdc\x65\x47\x9d\x87\x71\x30\x31\x92\xb7\x82\x97\x6c\xd7\x07\xd6\x75\x91\x6b\x53\xe2\x04\xd4\x56\x77\xf0\x6a\xe8\x2b\x86\x69\xfa\x5a\x40\xa6\x67\xfd\x85\x82\xba\x11\xdc\x59\x7d\xd8\x43\x0d\x82\x6b\xde\x3e\x54\x94\x17\x35\x4a\x65\x3a\xa9\x3e\x36\x18\x5a\xb6\x72\x61\x5f\x68\x6c\x43\x70\x5d\x97\xf8\x6e\xbe\x48\xa2\x32\x0f\xee\x7e\x75\x16\x6c\xd0\x7d\x8d\x27\xa3\x5a\x36\xcf\xd7\xea\xcd\xee\xb9\x14\xbb\xad\xaa\xe8\x43\xea\x1b\xc4\xea\x0e\x36\xce\x1d\xd3\x6a\x25\xa7\xf5\x24\x18\x27\x36\xa4\xcb\x39\xbf\x32\x61\xab\xd4\x78\x10\x5c\x0a\x90\xcd\xd2\x1d\xd3\x55\xbb\x25\xb9\xd8\xaf\x4a\x3f\xbb\xd8\xb3\xe1\xfa\xd2\xaa\x91\xec\x89\xe6\xc7\x34\xc9\x92\x24\xf1\xc9\x66\x9c\x69\x28\x5b\x9e\xdb\xf3\x4d\x22\x2d\x14\xd0\xba\x0e\x49\x28\x50\xe5\x92\x35\x5a\x48\x7f\x26\x87\xb1\xc3\xb4\x40\xa3\x63\x51\x60\x49\xdb\x5a\xc3\x13\xad\x5b\x54\x4b\xf3\x9f\x15\xd4\x6c\x58\xfa\x03\xdc\x9c\xb0\xe1\x04\xcf\xec\x9b\xa3\x16\x2a\x60\xda\xe8\x30\x09\xae\x90\xc9\x7e\x12\x78\xa2\x92\xd1\x6d\x8d\x8a\x24\xc6\x35\xeb\xe4\x22\x83\x53\x72\x2b\x2b\x66\x6d\xee\xfb\xce\x28\x0b\x7e\xc9\x47\xf4\x7a\x0d\x5b\xaa\xf0\x22\x19\x06\xa6\x70\xf2\x5f\x17\xe8\x27\x76\x60\xbc\x2f\xa8\xb9\x6b\x37\xee\xe3\xeb\xb5\xad\x01\x15\xf6\x13\x97\xfe\xcf\x74\x6f\x8b\xb7\x23\x56\x6c\x91\x9d\x13\xcb\xd9\xe8\xa7\x1a\xef\xb0\xed\xcd\x5f\x84\x62\xda\x4e\x02\x3d\x2d\x56\x77\xc3\x00\xe4\x28\x6f\xeb\xcf\xdb\x35\x78\xee\x8d\x21\x45\x06\x2e\x05\x47\xbd\x52\x58\x83\xcf\x3d\xf9\x8c\x3f\xbf\x78\x65\x8b\xe1\x48\x61\xc5\xc1\x7b\xf1\x89\x1d\xb0\xd8\xf0\x20\xe3\x1b\x74\x14\xf6\x0f\xf3\x6e\xe4\xbb\xee\x61\xd9\x17\xf1\x4d\x20\xb2\xb1\x4f\xf6\xd0\xf8\xf1\xe2\x01\xd6\x96\x78\x0b\x8e\x07\x6d\x87\x9e\x4f\xad\x36\xc4\xc9\xe2\x17\x38\x99\xe3\x58\xa2\x6e\x25\x1f\xbe\xe3\x07\xb3\xd1\xee\xce\xf5\x01\x72\xc1\x35\x1e\xb4\xc9\xa8\xf9\xbf\x84\xfd\x20\xca\x04\xcf\x60\x61\x5e\xbf\x1b\x86\x2e\x01\xa5\x34\x36\xac\xde\x19\x2b\xcd\x7b\x48\xe5\x08\x34\xf2\xfe\x89\xd6\x41\x85\x31\xb3\x84\x7d\xf6\x4f\x2b\xfe\xb7\x35\x70\x56\x7b\x15\xc1\x39\xce\x6a\xab\xdc\x7e\xb4\x43\x44\xbf\x62\x7c\x73\x7e\x07\x3d\x66\xd9\xe2\xd2\x5d\x63\x47\x15\x9d\xe6\x06\xb1\xcb\xc4\x70\x07\xf0\x39\x2b\xce\x18\x11\xd4\x9e\x65\xba\x3f\xc2\x67\xb3\xb8\xe9\x31\x2b\xe5\xf2\x6c\x63\x39\x9d\x0c\x87\xb8\x76\x28\xa5\x96\x0b\x76\x6f\x6a\x84\xbb\x6e\x8c\x61\x44\x15\x43\x14\x97\xf3\x45\x16\x8c\x8c\x46\xb0\xd1\x8b\x69\x95\xe6\xf6\x83\x12\x81\x4a\xf4\x2d\x24\x0a\x70\xb8\xdc\x8c\xa2\xf3\xec\xeb\x67\xa0\x68\xf2\xf0\x11\x35\x36\xa2\x6a\x34\x15\xd9\x43\xb3\x09\x50\x8c\x78\x1c\x46\x23\x2d\x5b\x8c\x67\x8f\x68\x30\xb2\x86\xcd\x2c\x11\xef\x08\x48\x8e\xd0\xf2\x40\x0d\x28\x5d\x6f\x1a\x03\x52\x67\xd8\x84\xd4\x2c\xa7\xc1\x04\x58\xcf\xe7\xbc\x90\xba\x39\x0b\xc3\x1b\xb3\xe3\xdd\x59\x22\xfa\xfd\x31\x1a\x97\x12\x4f\xfa\x58\x86\xf4\xc2\x1a\xe0\x16\x3f\x1a\xd7\x0a\x37\xbc\xc0\x43\xd8\xd8\x90\xf0\xfa\xd0\x3b\xd3\x4f\x22\xcf\xb5\x7a\x0d\xe6\xab\x16\x2e\xf1\x6e\xfa\xec\xef\x28\x9c\x7c\xa4\xea\x9d\x3f\xdd\xdc\xdb\xf7\xfe\x6c\x9b\x5e\x20\xce\xca\xca\x0e\xba\x7f\xb6\xae\xdc\xe6\x67\x15\x96\x13\x75\x95\x35\xfb\x15\xce\x44\xdd\x7a\x90\xff\xe3\xfa\x9b\x97\xce\x71\x17\x4c\x1f\x45\x7f\x89\xd8\xbc\x23\xbf\x28\x94\xef\x7c\x41\xba\x8a\xf1\x7b\xd6\x40\x9b\xc6\xde\x24\xfd\x07\x2b\x7f\xa1\x66\x1c\x66\xe5\x18\xa2\xe0\xf6\x87\xde\x81\xdb\x85\x12\x47\x3e\x0e\xdc\xad\xfc\x41\x05\x95\x36\xc4\x72\x9a\xa6\xb9\x99\x78\xcc\x52\x9c\x94\x77\xa8\xf2\x14\xe6\x25\xf9\xaa\x65\x9b\x6b\x77\x89\x19\xf6\xac\xee\x00\x79\xbb\x87\xf1\x28\xe4\x07\xd8\x02\x38\x52\xe9\x07\x9c\x02\xf3\x9a\x4a\xea\xfa\xf8\xc2\x74\xb3\x68\xb0\xcd\xfa\x86\x16\xd1\x70\x41\x2d\x9e\x24\x10\x71\x61\x5b\x56\x49\x36\xea\x3d\x6f\xf7\x59\x66\x9e\x7f\x69\x0a\xaa\xb1\xa7\x6a\x49\xa6\x3c\xb5\xa3\xbd\xc1\xc7\x06\xd7\x75\x66\x96\x1f\xfa\x68\x34\xe4\xd9\x1f\x38\x6c\x46\x03\xd0\x60\x11\x22\x9e\xaa\xae\x45\x94\x24\x1c\x46\xd3\x5e\x31\x8b\x8d\xbc\x3e\xab\xcf\x31\xb9\xc7\x6a\x26\xed\x21\x5a\xec\xab\x98\xbc\xeb\x1d\xf5\x84\x9f\x76\x8d\x0b\xf6\x47\x9c\xf8\x7f\x55\x8f\xba\xe3\x59\xaf\xbc\x9d\x9a\xa1\xc0\x2d\xab\x9c\xcc\x84\x58\x24\x8d\x14\x78\xc4\xc7\xf9\x72\xdb\xba\x6e\xf8\xd5\x6e\x4c\x33\x10\x1c\x72\x89\xb4\xff\x79\xca\x48\xdc\xcc\x60\x50\xfa\xcd\x50\x6f\xf0\xa7\x24\xe6\x83\xfd\x33\xd4\x7b\xef\x9b\x99\xb7\x7c\xb1\xc7\xdb\xc3\xee\xd4\x8e\x62\x19\xa4\x41\xcf\xa4\xe8\xa7\x90\x7d\xa4\xea\xdf\xc2\xca\x59\xd0\x16\x15\x55\x5f\x24\x96\xec\x30\x56\x6f\xd5\xa6\x59\x36\x49\x6f\x8f\xc9\xda\x47\xea\x2d\x2e\xa2\xec\x07\xc7\xc9\x62\xea\x73\xd7\x65\x37\xc9\x33\xd1\xfe\x1c\x7d\xcf\x25\xcc\x59\xad\x3e\x9b\x22\xa3\x6d\x7f\x9a\x28\xad\xd5\xf2\x1c\x9a\xdc\x00\x62\xe4\x8a\x85\xc3\x45\xb6\x51\xdf\x98\xd5\xe4\xb9\x30\xba\x1b\xf4\x39\x3a\x1f\x01\xe3\x13\xe1\x42\xe7\xb2\xd8\x70\xe3\xe3\x45\x60\xfa\x0d\x23\x79\xed\xb9\xed\x36\x94\x8e\x48\xb0\xf8\xbb\xca\xdc\xf8\x9f\x4e\xf9\x1e\x63\xc9\x3d\x20\x4c\x01\x1d\xae\xb3\x3d\x6a\xe9\x08\xb6\xd4\xe3\x06\x1b\xfb\x83\x73\x4e\x6b\xd3\xf2\xb7\x47\x2b\xba\x6d\x59\x5d\xa0\x54\xb0\xc5\x52\x48\x04\x45\x9f\x70\xd4\x4a\xf1\xf7\x49\xd0\x2f\x47\x64\x0c\x9e\x8c\x13\x30\x88\xff\x78\xf1\xe0\xf8\xa8\xcf\x88\x38\xe5\xf5\xa0\x6a\x48\x4f\xd8\x16\x2e\x32\xb3\xe1\xee\x1e\x9a\xe7\xb9\x4d\x2f\x5a\x72\x2b\xf3\x83\x10\xf2\x60\x35\x8e\xb3\xec\x60\xee\x15\xc7\x87\xef\x6f\x4b\x7f\x79\x3f\xf8\x0f\x97\xb2\x3e\xf6\xc6\xb6\xed\xdf\x6c\x9f\x5e\x4c\x8c\x4d\x2c\x66\xcb\xd8\x62\xd4\x7f\xc2\x95\xac\xbf\x94\x45\x7a\xfe\xe5\xd2\x14\x8e\x75\xb8\x1d\x8a\xe1\xc1\xaf\x4b\x28\x6d\x0c\x2e\x04\x03\x46\xbf\x1e\xdd\x29\x4b\x7e\xd9\xc2\xc5\x6b\x64\xe4\x5b\xb8\x45\xc6\x6e\x0f\x0f\xc3\x7d\x73\x1c\x59\x77\xe9\xe4\xba\x32\xe8\x5e\x7e\x8c\x7f\x95\xfb\x5f\x00\x00\x00\xff\xff\x62\x41\x1e\xdf\x2d\x1b\x00\x00") +var _templateRuntimeTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x5f\x6f\xdb\x38\x12\x7f\xb6\x3e\xc5\x9c\xe0\x03\xec\xc0\xa1\xdb\xbe\x5d\x0f\x7e\xe8\xf5\xcf\xd5\xc0\xb5\x28\xae\xdd\xbe\x14\xc1\x82\x91\x46\x36\x37\x32\xa9\x25\xa9\x34\x81\xa1\xef\x7e\xe0\x90\x94\x28\xd9\xf1\xe6\xf6\x69\x5f\x12\x91\x1c\x0e\x67\x7e\xf3\x9b\xe1\xd0\xc7\xe3\xfa\x2a\x7b\xab\x9a\x47\x2d\x76\x7b\x0b\xaf\x5e\xbc\xfc\xc7\x75\xa3\xd1\xa0\xb4\xf0\x81\x17\x78\xab\xd4\x1d\x6c\x65\xc1\xe0\x4d\x5d\x03\x09\x19\x70\xeb\xfa\x1e\x4b\x96\x7d\xdb\x0b\x03\x46\xb5\xba\x40\x28\x54\x89\x20\x0c\xd4\xa2\x40\x69\xb0\x84\x56\x96\xa8\xc1\xee\x11\xde\x34\xbc\xd8\x23\xbc\x62\x2f\xe2\x2a\x54\xaa\x95\x65\x26\x24\xad\xff\x67\xfb\xf6\xfd\xe7\xaf\xef\xa1\x12\x35\x42\x98\xd3\x4a\x59\x28\x85\xc6\xc2\x2a\xfd\x08\xaa\x02\x9b\x1c\x66\x35\x22\xcb\xae\xd6\x5d\x97\x65\xe4\xc3\x37\xb7\xa5\x95\x56\x1c\x10\x2c\x1e\x9a\x9a\x5b\x84\x1d\x4a\xd4\xdc\xa2\x21\x8d\xa6\xd8\xe3\x81\x5f\x1b\x2b\x6c\xb1\x17\x72\x07\xb5\xda\x89\x02\xb8\x2c\x61\xaf\xea\x92\x84\xb2\x83\x2a\xdb\x1a\xe1\x1e\xb5\x11\xca\x59\xc2\x2d\xfc\xe4\x06\x5a\xe7\x91\x55\xbd\x4a\xd2\xc8\x8d\x41\x6b\x58\x96\x6d\x2d\xec\xb9\x81\x57\x50\x29\x7d\xe0\xd6\x30\x78\x03\x79\x30\x27\x87\x86\x17\x77\x7c\x87\x5e\x99\xd9\xab\xb6\x2e\xe1\x16\x01\x0f\x8d\x7d\xbc\x16\x87\x46\x69\x8b\x65\xf0\x3b\x3b\x70\x21\xfb\x1d\x95\xd2\xc1\x6c\x03\x3f\x85\xdd\xc3\x5e\xa9\x3b\x03\x4a\x43\xa3\x6a\x51\x08\x34\xb0\x68\x94\x45\x69\x05\xaf\xa1\x78\x2c\x6a\x51\x04\x8d\x4b\x46\x98\x18\x2c\x94\x2c\x83\x5d\x2e\x3c\xd1\x81\x34\x3e\x39\x4a\xdb\x9b\xb9\x22\x44\x52\xe3\x40\x98\x4c\x2a\x0b\x12\x0b\x34\x86\xeb\x47\x58\x48\x05\xaa\xb1\x0e\x21\x67\xe2\xe4\x60\x38\x3d\x38\xc2\x77\x87\xd8\x64\xb7\xbc\xb8\xfb\xc9\x75\x69\xae\x0b\x75\x68\xb8\x15\xb7\xa2\x16\xf6\xd1\x7b\xd8\x68\xbc\x17\xaa\x35\x31\x04\xc6\x85\x1e\xa5\x1d\xa2\x0d\x25\x56\x42\x62\x0f\xf0\x9a\xac\xef\xba\x6c\x76\x3c\x0e\xb1\x1f\xe0\x9f\xbb\xb5\xe3\x11\x50\x96\xf0\x84\x86\xe6\x6e\xd7\x6b\x20\x2b\xf0\xc1\x3a\xf1\x39\xe4\x5f\x3c\x2a\x79\xa2\xd0\x09\x3e\x71\x16\x8b\x5a\xc2\x61\xee\x73\x1e\x38\xf5\x7a\x03\x73\xf6\x89\xbe\xb7\xb2\x52\x71\x59\x54\x2e\x9e\x41\x88\x7d\x0f\xc4\x8b\xe3\xaf\xed\x81\x04\x0b\x25\x8d\x85\x05\x1d\x7c\xed\x6d\x9c\x6e\x21\xb3\x66\x71\xb4\x81\xfc\x78\x24\x7b\x72\x58\xaf\x21\x4e\x7b\x30\x29\x59\x77\x28\x59\xd0\x17\xad\x3d\x55\x1e\xcf\x9f\xcd\xdc\xd7\x44\xa9\x9b\xba\xac\x70\x99\x82\x71\x31\x06\x79\x9c\x1f\x50\xdd\x23\x2f\x51\x07\x50\xdd\xd2\xdc\xd3\xff\xf5\x06\x5e\x04\x7d\x9a\xcb\x1d\xc2\x5c\x7a\x70\x3f\xab\x12\x4d\x0f\xbb\x6c\x0f\x1f\xa3\xfc\x5c\xb2\xcf\x71\xd8\x75\x1e\x75\x3f\xf7\xc5\x25\xd2\xa3\x9f\x1c\xb6\x6c\x80\x97\x65\x32\x7e\xe9\x05\xd2\xa8\xee\x53\x41\x3f\x18\xe4\x47\xde\x3a\x69\x6d\x9b\xbb\x9d\xb3\xa4\xe2\xb5\xc1\xde\x86\x3d\x37\x1f\x04\xd6\xc4\xb4\xaf\x85\x6a\x08\x86\x41\x7e\x03\xf8\x3b\xcc\x19\xad\xb0\xc0\xc4\x11\x62\x63\x48\x9d\x53\x7e\x63\xd7\x81\x2b\x8b\xf0\xd2\xd8\x98\x82\xd7\xb1\x3e\xae\xc3\x7f\xb6\x53\x40\x39\x15\x58\x18\x9c\x78\x9a\xde\x6b\x8d\x3b\x61\xac\x0b\xc9\xbc\xe7\xb9\xf7\x26\x9b\xcd\xd6\x6b\x9f\xf7\xe7\xab\xec\xa8\xf2\x08\x09\xce\x47\xf6\x56\xc9\x4a\xec\x7a\xc7\xba\x2e\x31\x6d\x4a\x9c\x88\xda\xfa\x0a\x5e\x0d\x75\xc5\x31\xcd\x3e\xe5\x90\xab\x59\x7f\x21\xa7\x2e\x38\x77\x92\x1f\x74\xa9\x41\x34\x2d\x9c\x0f\x7b\x2e\xcb\x1a\xb5\x71\x95\xd4\x3e\x36\x18\x4b\xb6\xf1\x6e\x9f\x29\x6c\x83\x73\x5d\x97\x85\x6a\xbe\xc8\x92\x34\x8f\xe6\x7e\xf5\x27\x90\xd3\x7d\x8e\x67\xa3\x5c\x76\xdf\x4f\xe5\x1b\xed\x39\xe7\x3b\x65\x55\x32\x91\x87\x02\xb1\xbe\x82\xad\x37\xc7\x95\x5a\x2d\x79\x3d\x71\xc6\x8b\x0d\xe1\xf2\xc6\xaf\x9d\xdb\x26\x77\x16\x44\x93\x22\x64\x33\x77\x8b\xed\x14\x13\x8a\x2e\x84\xc9\x78\xdd\x68\x71\xcf\x8b\xc7\x3c\x5b\x66\x59\x16\xc2\x2a\xa4\xb0\x50\xb5\xb2\xa0\x9b\x4c\x23\x2f\x0d\xf0\xba\x8e\x70\x97\x68\x0a\x2d\x1a\xab\x74\xb8\x7d\x63\x83\xe1\x8a\x9d\xd3\xb1\x28\xb1\xe2\x6d\x6d\xe1\x9e\xd7\x2d\x9a\x95\xfb\x2f\x4a\xee\x36\xac\xc2\x55\xed\xee\xd2\x78\x57\x2f\x69\xe4\x49\x84\x06\x84\x75\x3a\x5c\x28\xf7\x28\x74\x7f\xe7\xdf\x73\x2d\xf8\x6d\x8d\x86\x65\xce\x34\x32\x72\xb1\x84\x63\x76\x09\x7f\xb7\x36\x0f\x15\x66\x84\x77\x58\x0a\x1e\xbd\xde\xc0\x2d\x37\x78\x36\xec\x03\x27\x24\xfb\xaf\x77\xf4\x93\x78\x10\xb2\x4f\x9d\xb9\x2f\x2c\x7e\xf2\xf5\x86\xd8\x6e\xe2\x7e\xe6\x03\xfd\x99\x1f\x28\x4d\x3b\x46\x62\x8b\xe5\x29\x85\xfc\x19\x7d\xff\x12\x0c\xa6\x2a\xfc\x45\x19\x61\xe9\xce\xef\x09\xb0\xbe\x1a\x5a\x1d\x4f\x6e\xca\xb4\x70\xae\xc3\xf3\xe0\x0e\x32\x6c\x60\x4d\x34\x34\x28\x85\x0d\x84\xd8\xb3\xcf\xf8\xf3\x4b\x50\xb6\x18\x2e\x0f\x51\x3e\x04\x2b\x3e\x89\x07\x2c\xb7\x32\xca\x84\x52\x9c\xb8\xfd\xc3\x8d\x9d\x7c\xd7\xdd\xac\xfa\x74\xbd\x08\xc4\x72\x6c\x13\x5d\x0f\x3f\x5e\xdc\xc0\x86\x88\xb7\x90\xf8\x60\xa9\xbd\xf9\xd4\x5a\x47\x9c\x65\x3a\x80\xa3\xbb\x78\x35\xda\x56\xcb\x61\x1e\x3f\xb8\x8d\xb4\xbb\xb0\x0f\x50\x28\x69\xf1\xc1\xba\x88\xba\xff\x2b\x38\x0c\xa2\x42\xc9\x25\x2c\xdc\xf0\xbb\x63\xe8\x0a\x50\x6b\x77\x06\xe9\x9d\x89\xca\x8d\x63\x28\x47\xa0\xb1\xf7\xf7\xbc\x8e\x2a\xdc\x31\x2b\x38\x2c\xff\x49\xe2\x7f\xdb\x80\x14\x75\x50\x11\x8d\x93\xa2\x26\xe5\x34\x49\xed\x42\xbf\xe2\x6c\xf3\x76\x47\x3d\x6e\x99\x70\xe9\x9e\x62\xc7\x3e\xb9\xb7\x1d\x62\xe7\x89\xe1\xaf\xda\x53\x56\x9c\x30\x22\xaa\x3d\x89\x74\x7f\x59\xcf\x66\x69\x79\x13\x24\xe5\xe3\x4c\xbe\x1c\x8f\x8e\x43\xd2\x7a\x94\x72\xe2\x02\xed\xcd\x9d\x70\xd7\x8d\x31\x4c\xa8\xe2\x88\xe2\x63\xbe\x58\xc6\x43\x46\xcd\xd6\x68\xe0\x8a\xa2\x7b\xe7\xa0\x46\xe0\x1a\x43\x09\x49\x1c\x1c\x9e\x31\x23\xef\x02\xfb\xfa\x6e\x27\xe9\x31\x82\x47\x0d\x79\xb4\x1f\xf5\x3f\x74\x3d\x36\x11\x8a\x11\x8f\x63\x13\x64\x75\x8b\x69\x97\x91\xb4\x40\x74\xb0\xeb\x1a\xd2\x1d\x11\xc9\x11\x5a\x01\xa8\x01\xa5\xa7\x8b\xc6\x80\xd4\x09\x36\x31\x34\xab\xa9\x33\x11\xd6\xd3\x8e\x2e\x86\x6e\x2e\x62\x9b\x26\xa8\x91\x3b\x09\x44\xbf\x3f\x45\xe3\x5c\xe0\x59\xef\xcb\x10\x5e\xd8\x00\x5c\xe2\x47\xe3\x4b\xe1\x56\x96\xf8\x10\x37\x36\x2c\x0e\x6f\x7a\x63\xfa\x9e\xe3\xb9\xa7\x3e\x05\xf3\x93\x27\x9c\xe3\xdd\xf4\x3b\xbc\x46\x24\xfb\xc8\xcd\xbb\x70\xbb\xf9\xd1\xf7\xfe\x6e\x9b\x3e\x15\x4e\xd2\x8a\x5a\xda\x3f\x9b\x57\x7e\xf3\xb3\x12\xcb\x8b\xfa\xcc\x9a\xfd\x0a\x27\xa2\x7e\x3d\xca\xff\x71\xfe\xcd\x2b\x6f\xb8\x77\xa6\xf7\xa2\x7f\x2e\x6c\xdf\xb1\x5f\x0c\xea\x77\x21\x21\x7d\xc6\x84\x3d\x1b\xe0\x4d\x43\x6f\xc6\x30\x41\xf2\x67\x72\xc6\x63\x56\x8d\x21\x8a\x66\x7f\xe8\x0d\xb8\x9c\x28\xa9\xe7\x63\xc7\xfd\xca\x1f\x64\x50\x45\x2e\x56\xd3\x30\xcd\x5d\xc7\xe3\x96\xd2\xa0\xbc\x43\x53\xe4\x30\xaf\xd8\x57\xab\xdb\xc2\xfa\xe7\xca\xb0\x67\x7d\x05\x28\xdb\x03\x8c\x5b\xa1\xd0\xaa\x96\x20\x91\xeb\xd0\xe0\x94\x58\xd4\x5c\x73\x5f\xc7\x17\xae\x9a\x25\x2d\xec\xb2\x2f\x68\x09\x0d\x17\x9c\xf0\x64\x91\x88\x0b\x2a\x59\x15\xdb\x9a\xf7\xb2\x3d\x2c\x97\xee\xfb\x97\xa6\xe4\x16\x7b\xaa\x56\x6c\xca\x53\x6a\xe2\x1d\x3e\xe4\x5c\xd7\xb9\xae\x7d\xa8\xa3\x49\x93\x47\x3f\x65\x50\x44\x23\xd0\x40\x08\xb1\x40\x55\x5f\x22\x2a\x16\x2f\xa3\x69\xad\x98\xa5\x87\xbc\x3e\xc9\xcf\x31\xb9\xc7\x6a\x26\xe5\x21\x59\xec\xb3\x98\xbd\xeb\x0d\x0d\x84\x9f\x56\x8d\x33\xe7\x8f\x38\xf1\xff\xaa\x1e\x55\xc7\x93\x5a\x79\x39\x34\x43\x82\x13\xab\xbc\xcc\x84\x58\x2c\x4f\x14\x04\xc4\xc7\xf1\xf2\xdb\xba\x6e\xf8\x7d\x6e\x4c\x33\x50\x12\x0a\x8d\xbc\xff\x21\xca\x49\x5c\x8c\x60\x54\xfa\xcd\x51\x6f\xb0\xa7\x62\x6e\x82\xfe\x0c\xf9\xde\xdb\xe6\xfa\xad\x90\xec\xe9\xf6\xb8\x3b\xa7\x56\x6c\x09\x79\xd4\x33\x49\xfa\x29\x64\x1f\xb9\xf9\xb7\x22\x39\x02\x6d\xb1\xe7\xe6\x8b\xc6\x4a\x3c\x8c\xd5\x93\xda\x7c\xb9\x9c\x84\xb7\xc7\x64\x13\x3c\x0d\x27\x2e\x92\xe8\x47\xc3\xd9\x62\x6a\x73\xd7\x2d\x2f\x92\x67\xa2\xfd\x39\xfa\x9e\x4b\x98\x93\x5c\x7d\x36\x45\x46\xdb\xfe\x34\x51\x5a\xd2\xf2\x1c\x9a\x5c\x00\x62\x64\x0a\xc1\xe1\x3d\xdb\x9a\x6f\x82\x34\x05\x2e\x8c\xde\x06\x7d\x8c\x4e\x5b\xc0\xf4\x46\x38\x53\xb9\x08\x1b\xe9\x6c\x3c\x0b\x4c\xbf\x61\x24\x6f\x03\xb7\xfd\x86\xca\x13\x09\x16\x7f\x37\x4b\xdf\xfe\xe7\x53\xbe\xa7\x58\xca\x00\x88\x30\xc0\x87\xe7\x6c\x8f\x5a\x3e\x82\x2d\x0f\xb8\xc1\x96\x7e\x5a\x2e\x78\xed\x4a\xfe\xed\x23\x89\xde\xb6\xa2\x2e\x51\x1b\xb8\xc5\x4a\x69\x04\xc3\xef\x71\x54\x4a\xf1\xf7\x89\xd3\x2f\x47\x64\x8c\x96\x8c\x03\x30\x88\xff\x78\x71\xe3\xf9\x68\x4f\x88\x38\xe5\xf5\xa0\x6a\x08\x4f\xdc\x16\x1f\x32\xb3\xe1\xed\x1e\x8b\xe7\xe9\x99\x41\xb4\x92\x24\xf3\x83\x31\x76\x43\x1a\xc7\x51\xf6\x30\xf7\x8a\xd3\xcb\xf7\xb7\x55\x78\xbc\x3f\x84\x89\x73\x51\x1f\x5b\x43\x65\xfb\x37\xaa\xd3\x8b\xc9\x61\x93\x13\x97\xab\xf4\xc4\xa4\xfe\xc4\x27\x59\xff\x28\x4b\xf4\xfc\xcb\x87\x29\x5e\xeb\x70\xd9\x15\xc7\x83\x5f\x57\x50\x91\x0f\xde\x05\x07\x46\xbf\x9e\xbc\x29\x2b\x79\xfe\x84\xb3\xcf\xc8\xc4\xb6\xf8\x8a\x4c\xcd\x1e\x3e\x86\xf7\xe6\xd8\xb3\xee\xdc\xcd\xf5\x44\xa3\x7b\xfe\x33\xfd\xfd\xed\x7f\x01\x00\x00\xff\xff\xc2\x57\x8f\xb1\x17\x1b\x00\x00") func templateRuntimeTmplBytes() ([]byte, error) { return bindataRead( @@ -1186,12 +1186,12 @@ func templateRuntimeTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/runtime.tmpl", size: 6957, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/runtime.tmpl", size: 6935, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _templateTxTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdf\x8f\xdb\xb8\x11\x7e\x96\xfe\x8a\xa9\xb1\x38\x58\x0b\xaf\x94\xbb\xb7\x6e\xe0\x02\xc1\x26\x41\x17\xb8\xee\xa1\xbd\x3d\x34\x40\x10\xdc\x71\xc5\x91\x4d\xac\x4c\xaa\x14\xb5\x2b\xd7\xf0\xff\x5e\xcc\x90\xd4\x0f\xdb\x49\x5a\xa0\x79\x48\x64\x72\x38\xfc\x66\xe6\xe3\xf0\x63\x0e\x87\xe2\x3a\xbd\x33\xcd\xde\xaa\xcd\xd6\xc1\x4f\x6f\x7e\xfc\xf3\x4d\x63\xb1\x45\xed\xe0\xa3\x28\xf1\xc9\x98\x67\xb8\xd7\x65\x0e\xef\xea\x1a\xd8\xa8\x05\x9a\xb7\x2f\x28\xf3\xf4\x71\xab\x5a\x68\x4d\x67\x4b\x84\xd2\x48\x04\xd5\x42\xad\x4a\xd4\x2d\x4a\xe8\xb4\x44\x0b\x6e\x8b\xf0\xae\x11\xe5\x16\xe1\xa7\xfc\x4d\x9c\x85\xca\x74\x5a\xa6\x4a\xf3\xfc\xcf\xf7\x77\x1f\x1e\x7e\xfd\x00\x95\xaa\x11\xc2\x98\x35\xc6\x81\x54\x16\x4b\x67\xec\x1e\x4c\x05\x6e\xb2\x99\xb3\x88\x79\x7a\x5d\x1c\x8f\x69\x7a\x38\x80\xc4\x4a\x69\x84\x85\xeb\x17\x10\x86\x1c\xee\x9a\x5a\x38\x84\xc5\x16\x85\x44\xbb\x80\x2b\x9e\x52\xbb\xc6\x58\x07\xcb\x34\x59\x94\x46\x3b\xec\xdd\x22\x4d\x16\xed\x5e\x97\x8b\x34\x4d\x16\x1b\xe5\xb6\xdd\x53\x5e\x9a\x5d\x51\x85\xf8\x0b\xd4\xae\x90\x4a\xd4\x58\xba\x45\x9a\xa5\x69\x51\xc0\x63\x4f\xa1\x0a\x70\x56\xe8\x56\x94\x4e\x19\x2d\x6a\x28\x6b\x45\x89\x73\x5b\xe1\x68\xba\xb4\x28\x1c\x4a\x78\xda\x43\x29\xea\x5a\xe9\x0d\xdc\xb1\x45\xfe\xd8\x2f\xb3\x3c\x75\xfb\x06\xc9\x53\xeb\x6c\x57\x3a\x38\xa4\x49\x69\x74\xa5\x36\x69\x72\x38\x80\x15\x7a\x83\x70\xf5\xfb\x0a\xae\x34\xdc\xae\xe1\x2a\x7f\x30\x12\x5b\xb8\x39\x1e\xd3\x24\x29\x0a\x38\x1c\xe0\x4a\xe7\x0f\x62\x87\x70\x3c\xd2\x76\x94\xb5\x80\xa0\x32\x16\x94\x76\x68\x09\x9a\xde\xc0\xab\x72\x5b\x9e\x9f\x2f\x7a\xea\x54\x2d\xd1\xb6\x79\x9a\x24\xf3\x99\xeb\xd9\x4f\x8f\x9a\x61\xa1\x96\x9c\x46\x42\x50\x8b\x7f\xab\x7a\x0f\xb5\x11\x92\xc8\x90\x84\xcd\xe9\xcf\x75\x5c\xe2\xc7\x7e\xd1\x25\x02\xe5\x38\xa7\x2f\xbf\xba\x34\xbb\xa6\x46\xca\x1c\x67\xe7\x49\x94\xcf\x04\x64\xd7\x41\xfc\xc3\x0b\xfe\xd6\x39\xec\xd3\xc4\xe8\x3b\xb3\xdb\x29\xf2\xfe\xf9\x8b\xff\xfc\xab\x31\xcf\x34\xf1\x0f\xe3\x57\xc3\xe7\x2f\xf1\x93\xa7\xfc\x2e\xae\x87\x5a\xbd\x60\xcb\x39\xa1\x14\xd4\xaa\x42\x4f\x27\x9c\x96\x2f\x87\x7b\x2a\x1a\x2f\xa2\xa9\x96\x42\x0f\x0c\x81\xae\xf5\x65\xa4\x09\xa6\x75\xbd\xa7\xb4\x96\x46\x6b\xf4\xab\xd3\x84\x76\x0a\xf6\xf9\x9d\xff\x37\xf5\x54\xbc\xaa\x3a\x5d\xb6\x54\x44\xa9\x4a\x07\x0b\x0f\x7f\x11\x3f\x1c\x91\x73\x11\xa1\x4f\x3e\x69\xfc\x78\x4c\x47\x32\x90\x1f\x72\xf3\x8c\xfb\x36\x7a\x25\x3a\xd0\x1e\x8a\xe8\x4a\x93\x1b\x74\x71\xce\x2f\x20\x0b\xa6\xda\x72\x24\x8e\xb7\x1e\x79\xc3\x64\xe1\x31\x26\xef\xab\x15\x4d\x3b\x10\x66\x30\xde\xa1\xdb\x1a\x19\xd9\x32\xfa\x18\x16\x1f\xd2\xc4\xcf\x85\x8d\x97\x27\x09\x59\xc1\xf5\x63\x9f\x01\x5a\x6b\x6c\x9a\x24\xc4\x23\x42\xf4\x18\x36\x0a\xab\x3e\xd2\x3f\x8c\x98\xce\x98\x06\x21\x45\xe3\xa8\x95\x18\x10\x75\x6d\x5e\x7d\x19\x5a\xae\xa2\xb1\x52\x69\x61\xf7\xde\x11\x39\x60\x46\x09\x3a\x9c\x53\x90\x39\xdc\x57\x50\xf9\x43\x3b\x58\x0d\xc7\x42\x34\x8d\x35\x8d\x55\xc2\xa1\x77\xd4\xaa\x8d\x16\xae\xb3\xb8\x3a\x05\xb6\xac\x32\xef\x65\x96\x02\xce\x1a\xd1\xb8\x85\x2a\xe6\x67\x1a\x0d\x7d\x7f\x33\x19\x63\x69\xc2\x32\xa2\x70\xe8\x6b\xbe\x12\x8b\xc3\x01\x6a\xf3\x8a\x76\x30\x81\x9d\x92\xb2\xc6\x57\x61\x71\x91\xc3\xbb\x31\x2e\x46\xb3\x41\x77\x0a\xd3\x6f\x22\xb4\x04\x8b\xae\xb3\xfa\x3c\x49\x1f\x8d\x05\xec\x05\x9d\xcc\x5b\xb6\xe6\xbf\x92\x2d\x81\xb9\x5d\xfb\x30\x34\x9d\x08\xea\x62\xd3\xa5\xd9\xd9\x08\x93\xa1\x28\x92\xc4\xef\x35\xcc\xcf\x72\x79\x31\x2d\xae\x87\x6b\xdf\x25\x43\x76\x06\x57\x04\xff\xbd\x81\xd6\xec\x10\x5a\xd7\x55\x15\x3c\x61\x65\x2c\xe6\x71\x5e\x55\xb4\x82\xa0\x12\xca\x7c\x46\x45\xd7\x93\xeb\xec\x2d\x5b\xfc\x69\x0d\x5a\xd5\xa3\xe3\x01\xa5\xb5\x71\xe8\xf8\xd5\x4d\x45\xe5\xd0\x0e\x7b\x86\x95\x5a\xd5\x61\xe4\x98\xf9\x8f\x63\xcc\xe0\x69\x59\x39\xec\x59\xae\xb2\x93\x3a\x65\xbe\x7b\x4d\x16\x46\x76\xf9\x38\x76\x59\x9e\x26\x3c\xb3\xac\x4e\x19\x9a\xc1\x49\xd8\xa7\x6d\xc9\x67\x78\x9e\xdd\x10\x44\x35\xa4\x29\xe5\xd3\x79\x38\xdc\xc0\x95\xd1\x1f\x63\x03\x6b\xac\xd2\x0e\x16\x46\x2f\x26\xcd\xe5\x04\xe8\x19\x4f\xdb\xb3\x5e\x1b\xb1\x47\x1c\x53\xc0\x53\x54\xae\x7f\x6f\xd5\x0b\x72\x41\x5d\x9f\xfb\xeb\x31\x97\x3c\x96\x2f\xaf\xe3\x34\xe5\xfb\x45\x58\xa8\xf4\xfc\x54\xae\xcf\x0f\xef\x77\xce\xa1\xef\x60\x21\x19\xd1\x7d\xee\xfa\x19\x93\x68\x3b\xae\xb1\xeb\xf3\x5d\x97\xff\x6c\xca\x67\x1e\xa3\x53\xc2\x59\x12\x4d\x83\x5a\x2e\x3f\x7f\x39\x29\xfc\x52\xab\x3a\xa3\xec\xb2\xbb\x98\xd6\xe3\x31\xcf\xf3\xd1\xdd\x6f\xba\x8e\x0e\xf9\x1a\x27\x87\x35\xea\x25\x7b\xcf\xe0\x06\x7e\x7c\x0b\x0a\xfe\xb2\x86\x37\x6f\x41\xdd\xdc\x78\xc4\x95\x86\x35\xb0\xc5\x67\xf5\x65\x59\x69\x86\x38\x29\xab\x9e\x05\x40\xa9\x9c\x95\xb9\x28\xe0\x17\x3d\xad\xa1\x90\x92\x9a\x03\x9f\x7b\x67\x98\x7b\x60\xf4\x79\x69\xcf\x2a\x39\x73\x33\xe7\x26\x65\x20\x0b\x65\x9d\xe5\x4d\x62\x45\xdd\xfd\x34\xfa\xb3\x34\xc1\x90\xd9\xb3\xa9\x15\x54\x1c\x0a\xf1\x35\x4a\x94\xa2\x08\x72\x6b\xd2\xed\xee\x26\x0a\xed\x49\x69\xd9\x72\x74\x9d\xb5\x3c\x3a\x65\xe8\x3c\x2c\xbf\x6e\x99\x45\x61\x43\x61\x50\x16\x07\x75\x93\xbf\x37\x9e\x5c\x43\x84\x41\x0d\xad\xe1\x07\xbf\xe4\xe0\xd9\x7b\x3b\x12\xf9\x38\x35\xcc\x95\x56\x8e\xe2\x26\x66\x0d\x04\x0c\x93\x24\x24\xe6\x80\xbc\x35\xed\xf5\x5d\xad\x18\x92\x35\x8a\xbb\x35\x3c\xe0\xeb\x05\x81\xb7\x1c\x90\x65\x83\xd6\x23\x17\xac\x62\x8a\x6b\xa8\x94\x6d\x1d\x68\xd2\xf9\xc4\x4c\x69\xca\x78\x57\x00\x2b\x71\x6e\x16\xde\xe8\x76\x0d\x4a\x4b\xec\x07\x28\x6f\x62\x49\x86\x23\x3d\x6a\x8c\x8d\x7a\x41\x0d\x41\x61\xe7\x8f\xbd\xbf\x97\x05\x68\xd3\x0c\xa3\x61\x91\xa2\xdd\x76\xa8\x9d\xf0\x55\x0a\xe2\x41\x49\x14\x2c\x65\x0c\xb4\x5d\xc3\x02\x7f\x52\xcc\x96\x1d\x9a\xce\x11\xad\x49\xb7\x09\xbd\x07\xec\x9d\x15\xfe\xd1\xe2\x0c\xc3\x18\xd5\x70\x51\xc0\x3f\xb7\xa8\x41\xc4\xb1\xd0\x7c\x9d\x81\xd0\x7b\x48\xc0\xaf\x40\x85\x5b\x76\xd0\x8b\x93\x18\x94\x6e\x9d\x20\x62\x30\x0f\xbd\x76\xa5\x9b\x77\x50\xab\xc2\x22\x47\x18\x75\x29\xab\x28\x7a\x45\x44\x1c\x6c\x1e\xa4\x8e\x85\x5d\xd7\xba\x78\x0e\x91\x7c\x7a\x09\xbb\xa3\xf7\x92\xb1\xd2\xcb\xa3\xd2\xef\x63\x2c\xd8\xb8\xcd\x59\xeb\x2d\x0a\x5a\x7d\x5f\x81\x80\xb2\x36\x24\x6c\x27\xd3\x94\x44\xdc\x3d\xa1\x94\x28\xd9\xb3\x1e\xb4\xf2\x06\x35\x5a\x7e\xcf\xa0\x76\xca\x29\x6c\x57\x03\x42\x1e\xd9\x93\x5f\xd1\x34\xb5\x42\x3a\x6a\xff\xea\xd0\xee\x57\x1c\x5e\x54\x14\xbe\x1b\x10\x41\x22\xf1\xf2\xbf\x93\xd5\xa7\x4f\x9f\x28\x9d\xe4\x89\x57\xc1\xab\xaa\x6b\x78\x42\xc0\x1e\xcb\xce\xa1\x64\xe2\x6c\xad\xe9\x36\x5e\xaf\xc9\x40\xa1\xad\x2a\xb7\xc3\x33\x8b\xdf\x87\x17\x42\x7d\x30\x2e\xc8\xda\x81\x7b\xaa\x05\x6d\x1c\x6c\x8c\x35\x9d\xa3\x97\x63\x2b\x2a\x0c\x0f\xb2\xc1\x68\x7c\x96\x85\x27\x41\xdc\x95\x64\x80\xb0\x7e\xcb\x59\x72\xa1\xb2\x66\x97\xa7\x89\xb4\x2f\x27\xc4\xf5\x3e\xfa\x28\xb7\x27\x6f\x88\xf9\xb5\xe8\xfa\x09\x87\x52\x7f\x62\x34\xbe\x3e\xf6\x21\x4a\x4a\xac\xc6\xd7\x93\x77\x67\x20\xa5\x6f\x11\x6c\x7e\xf9\xda\x3f\xc7\x95\xc1\x78\x8b\xae\xfc\x15\x98\xf9\xde\xb6\x8a\x42\x4a\xda\x97\xdc\x3b\xcc\xd2\xa8\xaf\x26\xea\x69\x54\x3f\x2b\x2f\x9e\x8e\x43\xfb\xfa\x21\x7a\x3e\xb8\x9e\xda\x1e\x03\xb8\xa5\xbf\x8e\x2b\x96\x4b\xc7\xf8\x96\x8e\x0d\xfa\x34\x9f\xd4\x23\x1a\xb4\xd4\xf6\x22\x5e\x7a\x04\xbc\x18\x25\xe3\x99\x32\x76\x3c\x52\x7c\x4a\xc9\x25\xd5\xe1\xf2\xa1\xca\xe1\xd7\xad\xe9\x6a\x49\xec\x22\x73\x94\x60\x74\xbd\x8f\x8f\xbb\x73\xfb\x49\xdf\x1d\x41\x50\x3e\xe6\xc9\xcd\x60\x39\x16\x6e\xcc\x24\x0c\x9d\x9c\x23\x06\x1f\xf1\x7b\x6f\x39\x0b\x3b\xac\x8e\xa7\xed\xbf\xe5\xda\x25\x74\xc1\xfd\x32\x23\x0a\x13\xc7\x26\x30\x72\x2a\xe7\x68\x10\xaf\x49\xd3\xfa\xc7\x16\x77\x24\x6e\x0b\xd1\xf5\xc4\x2f\x9b\x8d\xfa\x0c\xc6\xd2\x47\x3f\xbe\x24\xa3\x23\xff\xfb\xab\x1d\x8e\x7b\xe3\x6f\xf3\xee\xf6\xc7\x63\x9f\x7b\x3f\x7f\x5c\x6a\x6d\x67\xed\xec\x1c\x25\x1b\x7e\x0b\xe6\xc0\x97\x01\xe8\xd0\x2d\xff\x67\xa8\xd1\xd7\x1c\xec\xd7\xbb\xef\x19\xdc\xe8\xe0\x5b\x80\x3f\xf4\x58\xc6\x2b\xa8\xcf\xe9\xd7\xe5\xc2\xd3\xcc\xe5\x93\xef\xdb\xaa\xa7\xc3\x0a\x84\xdd\xb4\x2b\x78\x19\x1f\xee\x87\xe3\x44\xff\x8e\x5c\x09\x9b\xf9\x37\x41\xe8\xe7\x61\x6d\x16\x0e\x2f\xf7\xef\x11\x1b\xff\xbc\x0c\x8e\xa7\xfe\xcf\xe8\x06\x9f\x17\xe1\xd1\x93\xe0\xf7\x53\x05\xb1\x9e\x66\x9f\x05\x39\xff\x1f\x4d\x10\x8d\xff\x09\x00\x00\xff\xff\x2f\x89\x45\xed\x10\x15\x00\x00") +var _templateTxTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdf\x8f\xdb\xb8\x11\x7e\x96\xfe\x8a\xa9\xb1\x38\x58\x0b\xaf\x94\xbb\xb7\x6e\xe0\x02\xc1\x26\x41\x17\xb8\xee\xa1\xbd\x3d\x34\x40\x10\xdc\x71\xc5\x91\x4d\xac\x4c\xaa\x14\xb5\x2b\xd7\xf0\xff\x5e\xcc\x90\xd4\x0f\xdb\x49\x5a\xa0\x79\x48\x64\x72\x38\xfc\x66\xe6\xe3\xf0\x63\x0e\x87\xe2\x3a\xbd\x33\xcd\xde\xaa\xcd\xd6\xc1\x4f\x6f\x7e\xfc\xf3\x4d\x63\xb1\x45\xed\xe0\xa3\x28\xf1\xc9\x98\x67\xb8\xd7\x65\x0e\xef\xea\x1a\xd8\xa8\x05\x9a\xb7\x2f\x28\xf3\xf4\x71\xab\x5a\x68\x4d\x67\x4b\x84\xd2\x48\x04\xd5\x42\xad\x4a\xd4\x2d\x4a\xe8\xb4\x44\x0b\x6e\x8b\xf0\xae\x11\xe5\x16\xe1\xa7\xfc\x4d\x9c\x85\xca\x74\x5a\xa6\x4a\xf3\xfc\xcf\xf7\x77\x1f\x1e\x7e\xfd\x00\x95\xaa\x11\xc2\x98\x35\xc6\x81\x54\x16\x4b\x67\xec\x1e\x4c\x05\x6e\xb2\x99\xb3\x88\x79\x7a\x5d\x1c\x8f\x69\x7a\x38\x80\xc4\x4a\x69\x84\x85\xeb\x17\x10\x86\x1c\xee\x9a\x5a\x38\x84\xc5\x16\x85\x44\xbb\x80\x2b\x9e\x52\xbb\xc6\x58\x07\xcb\x34\x59\x94\x46\x3b\xec\xdd\x22\x4d\x16\xed\x5e\x97\x8b\x34\x4d\x16\xa8\xdd\xc6\xe4\xca\x14\xa8\x5d\x21\x95\xa8\xb1\x74\x8b\x34\x4b\xd3\xa2\x80\xc7\x9e\xe2\x13\xe0\xac\xd0\xad\x28\x9d\x32\x5a\xd4\x50\xd6\x8a\xb2\xe5\xb6\xc2\xd1\x74\x69\x51\x38\x94\xf0\xb4\x87\x52\xd4\xb5\xd2\x1b\xb8\x63\x8b\xfc\xb1\x5f\x66\x79\xea\xf6\x0d\x92\xa7\xd6\xd9\xae\x74\x70\x48\x93\xd2\xe8\x4a\x6d\xd2\xe4\x70\x00\x2b\xf4\x06\xe1\xea\xf7\x15\x5c\x69\xb8\x5d\xc3\x55\xfe\x60\x24\xb6\x70\x73\x3c\xa6\x49\x52\x14\x70\x38\xc0\x95\xce\x1f\xc4\x0e\xe1\x78\xa4\xed\x28\x55\x01\x41\x65\x2c\x28\xed\xd0\x12\x34\xbd\x81\x57\xe5\xb6\x3c\x3f\x5f\xf4\xd4\xa9\x5a\xa2\x6d\xf3\x34\x49\xe6\x33\xd7\xb3\x9f\x1e\x35\xc3\x42\x2d\x39\x77\x84\xa0\x16\xff\x56\xf5\x1e\x6a\x23\x24\x31\x20\x09\x9b\xd3\x9f\xeb\xb8\xc4\x8f\xfd\xa2\x4b\x04\x4a\x6c\x4e\x5f\x7e\x75\x69\x76\x4d\x8d\x94\x39\xce\xce\x93\x28\x9f\x09\xc8\xae\x83\xf8\x87\x17\xfc\xad\x73\xd8\xa7\x89\xd1\x77\x66\xb7\x53\xe4\xfd\xf3\x17\xff\xf9\x57\x63\x9e\x69\xe2\x1f\xc6\xaf\x86\xcf\x5f\xe2\x27\x4f\xf9\x5d\x5c\x0f\xb5\x7a\xc1\x96\x73\x42\x29\xa8\x55\x85\x9e\x43\x38\x2d\x5f\x0e\xf7\x54\x34\x5e\x44\x53\x2d\x85\x1e\x68\x01\x5d\xeb\xcb\x48\x13\xcc\xe5\x7a\x4f\x69\x2d\x8d\xd6\xe8\x57\xa7\x09\xed\x14\xec\xf3\x3b\xff\x6f\xea\xf9\x77\x55\x75\xba\x6c\xa9\x88\x52\x95\x0e\x16\x1e\xfe\x22\x7e\x38\x62\xe4\x22\x42\x9f\x7c\xd2\xf8\xf1\x98\x8e\x64\x20\x3f\xe4\xe6\x19\xf7\x6d\xf4\x4a\x74\xa0\x3d\x54\x25\x4a\xa4\xc9\x0d\xba\x38\xe7\x17\x90\x05\x53\x6d\x39\x12\xc7\x5b\x8f\xbc\x61\xb2\xf0\x18\x93\xf7\xd5\x8a\xa6\x1d\x08\x33\x18\xef\xd0\x6d\x8d\x8c\x6c\x19\x7d\x0c\x8b\x0f\x69\xe2\xe7\xc2\xc6\xcb\x93\x84\xac\xe0\xfa\xb1\xcf\x00\xad\x35\x36\x4d\x12\xe2\x11\x21\x7a\x0c\x1b\x85\x55\x1f\xe9\x1f\x46\x4c\x67\x4c\x83\x90\xa2\x71\xd4\x3f\x0c\x88\xba\x36\xaf\xbe\x0c\x2d\x57\xd1\x58\xa9\xb4\xb0\x7b\xef\x88\x1c\x30\xa3\x04\x1d\xce\x29\xc8\x1c\xee\x2b\xa8\xfc\xa1\x1d\xac\x86\x63\x21\x9a\xc6\x9a\xc6\x2a\xe1\xd0\x3b\x6a\xd5\x46\x0b\xd7\x59\x5c\x9d\x02\x5b\x56\x99\xf7\x32\x4b\x01\x67\x8d\x68\xdc\x42\x15\xf3\x33\x8d\x86\xbe\xbf\x99\x8c\xb1\x34\x61\x19\x51\x38\x34\x33\x5f\x89\xc5\xe1\x00\xb5\x79\x45\x3b\x98\xc0\x4e\x49\x59\xe3\xab\xb0\xb8\xc8\xe1\xdd\x18\x17\xa3\xd9\xa0\x3b\x85\xe9\x37\x11\x5a\x82\x45\xd7\x59\x7d\x9e\xa4\x8f\xc6\x02\xf6\x82\x4e\xe6\x2d\x5b\xf3\x5f\xc9\x96\xc0\xdc\xae\x7d\x18\x9a\x4e\x04\x75\xb1\xe9\xd2\xec\x6c\x84\xc9\x50\x14\x49\xe2\xf7\x1a\xe6\x67\xb9\xbc\x98\x16\xd7\xc3\xb5\xef\x92\x21\x3b\x83\x2b\x82\xff\xde\x40\x6b\x76\x08\xad\xeb\xaa\x0a\x9e\xb0\x32\x16\xf3\x38\xaf\x2a\x5a\x41\x50\x09\x65\x3e\xa3\xa2\xeb\xc9\x75\xf6\x96\x2d\xfe\xb4\x06\xad\xea\xd1\xf1\x80\xd2\xda\x38\x74\xfc\xea\xa6\xa2\x72\x68\x87\x3d\xc3\x4a\xad\xea\x30\x72\xcc\xfc\xc7\x31\x66\xf0\xb4\xac\x1c\xf6\x2c\x57\xd9\x49\x9d\x32\xdf\xbd\x26\x0b\x23\xbb\x7c\x1c\xbb\x2c\x4f\x13\x9e\x59\x56\xa7\x0c\xcd\xe0\x24\xec\xd3\xb6\xe4\x33\x3c\xcf\x6e\x08\xa2\x1a\xd2\x94\xf2\xe9\x3c\x1c\x6e\xe0\xca\xe8\x8f\xb1\x81\x35\x56\x69\x07\x0b\xa3\x17\x93\xe6\x72\x02\xf4\x8c\xa7\xed\x59\xaf\x8d\xd8\x23\x8e\x29\xe0\x29\x2a\xd7\xbf\xb7\xea\x05\xb9\xa0\xae\xcf\xfd\xf5\x98\x4b\x1e\xcb\x97\xd7\x71\x9a\xf2\xfd\x22\x2c\x54\x7a\x7e\x2a\xd7\xe7\x87\xf7\x3b\xe7\xd0\x77\xb0\x90\x8c\xe8\x3e\x77\xfd\x8c\x49\xb4\x1d\xd7\xd8\xf5\xf9\xae\xcb\x7f\x36\xe5\x33\x8f\xd1\x29\xe1\x2c\x89\xa6\x41\x2d\x97\x9f\xbf\x9c\x14\x7e\xa9\x55\x9d\x51\x76\xd9\x5d\x4c\xeb\xf1\x98\xe7\xf9\xe8\xee\x37\x5d\x47\x87\x7c\x8d\x93\xc3\x1a\xf5\x92\xbd\x67\x70\x03\x3f\xbe\x05\x05\x7f\x59\xc3\x9b\xb7\xa0\x6e\x6e\x3c\xe2\x4a\xc3\x1a\xd8\xe2\xb3\xfa\xb2\xac\x34\x43\x9c\x94\x55\xcf\x02\xa0\x54\xce\xca\x5c\x14\xf0\x8b\x9e\xd6\x50\x48\x49\xcd\x81\xcf\xbd\x33\xcc\x3d\x30\xfa\xbc\xb4\x67\x95\x9c\xb9\x99\x73\x93\x32\x90\x85\xb2\xce\xf2\x26\xb1\xa2\xee\x7e\x1a\xfd\x59\x9a\x60\xc8\xec\xd9\xd4\x0a\x2a\x0e\x85\xf8\x1a\x25\x4a\x51\x04\xb9\x35\xe9\x76\x77\x13\x85\xf6\xa4\xb4\x6c\x39\xba\xce\x5a\x1e\x9d\x32\x74\x1e\x96\x5f\xb7\xcc\xa2\xb0\xa1\x30\x28\x8b\x83\xba\xc9\xdf\x1b\x4f\xae\x21\xc2\xa0\x86\xd6\xf0\x83\x5f\x72\xf0\xec\xbd\x1d\x89\x7c\x9c\x1a\xe6\x4a\x2b\x47\x71\x13\xb3\x06\x02\x86\x49\x12\x12\x73\x40\xde\x9a\xf6\xfa\xae\x56\x0c\xc9\x1a\xc5\xdd\x1a\x1e\xf0\xf5\x82\xc0\x5b\x0e\xc8\xb2\x41\xeb\x91\x0b\x56\x31\xc5\x35\x54\xca\xb6\x0e\x34\x89\x7b\x62\xa6\x34\x65\xbc\x2b\x80\xe5\x37\x37\x0b\x6f\x74\xbb\x06\xa5\x25\xf6\x03\x94\x37\xb1\x24\xc3\x91\x1e\x35\xc6\x46\xbd\xa0\x86\xa0\xb0\xf3\xc7\xde\xdf\xcb\x02\xb4\x69\x86\xd1\xb0\x48\xd1\x6e\x3b\xd4\x4e\xf8\x2a\x05\xf1\xa0\x24\x0a\x96\x32\x06\xda\xae\x61\x55\x3f\x29\x66\xcb\x0e\x4d\xe7\x88\xd6\xa4\xdb\x84\xde\x03\xf6\xce\x0a\xff\x52\x71\x86\x61\x8c\x6a\xb8\x28\xe0\x9f\x5b\xd4\x20\xe2\x58\x68\xbe\xce\x40\xe8\x3d\x24\xe0\x57\xa0\xc2\x2d\x3b\xe8\xc5\x49\x0c\x4a\xb7\x4e\x10\x31\x98\x87\x5e\xbb\xd2\xcd\x3b\xa8\x55\x61\x91\x23\x8c\xba\x94\x55\x14\xbd\x22\x22\x0e\x36\x0f\x52\xc7\xc2\xae\x6b\x5d\x3c\x87\x48\x3e\xbd\x84\xdd\xd1\x23\xc9\x58\xe9\xe5\x51\xe9\xf7\x31\x16\x6c\xdc\xe6\xac\xf5\x16\x05\xad\xbe\xaf\x40\x40\x59\x1b\x12\xb6\x93\x69\x4a\x22\xee\x9e\x50\x4a\x94\xec\x59\x0f\x5a\x79\x83\x1a\x2d\xbf\x67\x50\x3b\xe5\x14\xb6\xab\x01\x21\x8f\xec\xc9\xaf\x68\x9a\x5a\x21\x1d\xb5\x7f\x75\x68\xf7\x2b\x0e\x2f\x2a\x0a\xdf\x0d\x88\x20\x91\x78\xf9\xdf\xc9\xea\xd3\xa7\x4f\x94\x4e\xf2\xc4\xab\xe0\x55\xd5\x35\x3c\x21\x60\x8f\x65\xe7\x50\x32\x71\xb6\xd6\x74\x1b\xaf\xd7\x64\xa0\xd0\x56\x95\xdb\xe1\x99\xc5\x8f\xc2\x0b\xa1\x3e\x18\x17\x64\xed\xc0\x3d\xd5\x82\x36\x0e\x36\xc6\x9a\xce\xd1\x73\xb1\x15\x15\x86\x07\xd9\x60\x34\x3e\xcb\xc2\x93\x20\xee\x4a\x32\x40\x58\xbf\xe5\x2c\xb9\x50\x59\xb3\xcb\xd3\x44\xda\x97\x13\xe2\x7a\x1f\x7d\x94\xdb\x93\x37\xc4\xfc\x5a\x74\xfd\x84\x43\xa9\x3f\x31\x1a\x5f\x1f\xfb\x10\x25\x25\x56\xe3\xeb\xc9\xbb\x33\x90\xd2\xb7\x08\x36\xbf\x7c\xed\x9f\xe3\xca\x60\xbc\x45\x57\xfe\x0a\xcc\x7c\x6f\x5b\x45\x21\x25\xed\x4b\xee\x1d\x66\x69\xd4\x57\x13\xf5\x34\xaa\x9f\x95\x17\x4f\xc7\xa1\x7d\xfd\x10\x3d\x1f\x5c\x4f\x6d\x8f\x01\xdc\xd2\x5f\xc7\x15\xcb\xa5\x63\x7c\x4b\xc7\x06\x7d\x9a\x4f\xea\x11\x0d\x5a\x6a\x7b\x11\x2f\x3d\x02\x5e\x8c\x92\xf1\x4c\x19\x3b\x1e\x29\x3e\xa5\xe4\x92\xea\x70\xf9\x50\xe5\xf0\xeb\xd6\x74\xb5\x24\x76\x91\x39\x4a\x30\xba\xde\xc7\xc7\xdd\xb9\xfd\xa4\xef\x8e\x20\x28\x1f\xf3\xe4\x66\xb0\x1c\x0b\x37\x66\x12\x86\x4e\xce\x11\x83\x8f\xf8\xbd\xb7\x9c\x85\x1d\x56\xc7\xd3\xf6\xdf\x72\xed\x12\xba\xe0\x7e\x99\x11\x85\x89\x63\x13\x18\x39\x95\x73\x34\x88\xd7\xa4\x69\xfd\x63\x8b\x3b\x12\xb7\x85\xe8\x7a\xe2\x97\xcd\x46\x7d\x06\x63\xe9\xa3\x1f\x5f\x92\xd1\x91\xff\xfd\xd5\x0e\xc7\xbd\xf1\xb7\x79\x77\xfb\xe3\xb1\xcf\xbd\x9f\x3f\x2e\xb5\xb6\xb3\x76\x76\x8e\x92\x0d\xbf\x05\x73\xe0\xcb\x00\x74\xe8\x96\xff\x33\xd4\xe8\x6b\x0e\xf6\xeb\xdd\xf7\x0c\x6e\x74\xf0\x2d\xc0\x1f\x7a\x2c\xe3\x15\xd4\xe7\xf4\xeb\x72\xe1\x69\xe6\xf2\xc9\xf7\x6d\xd5\xd3\x61\x05\xc2\x6e\xda\x15\xbc\x8c\x0f\xf7\xc3\x71\xa2\x7f\x47\xae\x84\xcd\xfc\x9b\x20\xf4\xf3\xb0\x36\x0b\x87\x97\xfb\xf7\x88\x8d\x7f\x5e\x06\xc7\x53\xff\x67\x74\x83\xcf\x8b\xf0\xe8\x49\xf0\xfb\xa9\x82\x58\x4f\xb3\xcf\x82\x9c\xff\x8f\x26\x88\xc6\xff\x04\x00\x00\xff\xff\x6b\x98\xe7\x0b\x05\x15\x00\x00") func templateTxTmplBytes() ([]byte, error) { return bindataRead( @@ -1206,12 +1206,12 @@ func templateTxTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/tx.tmpl", size: 5392, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/tx.tmpl", size: 5381, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _templateWhereTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\xcf\x6f\xe3\xb6\x12\x3e\x5b\x7f\xc5\x40\x50\xf0\xec\xe0\x2d\xb5\x6f\x6f\xaf\x40\x0e\xee\x26\xdb\x75\x51\x24\xdb\x26\x68\x0f\x41\x0e\x8c\x38\xb2\x88\xc8\xa4\x96\xa4\x9d\x0d\x04\xff\xef\xc5\x90\xfa\x65\xc7\xb1\x9d\x6e\x50\xec\xcd\x26\x87\xc3\x99\x6f\xbe\x6f\x48\xb1\xae\xd3\xd3\xe8\xa3\xae\x9e\x8c\x9c\x17\x0e\x3e\xbc\xff\xdf\xff\xdf\x55\x06\x2d\x2a\x07\x9f\x78\x86\xf7\x5a\x3f\xc0\x4c\x65\x0c\xa6\x65\x09\xde\xc8\x02\xcd\x9b\x15\x0a\x16\xdd\x14\xd2\x82\xd5\x4b\x93\x21\x64\x5a\x20\x48\x0b\xa5\xcc\x50\x59\x14\xb0\x54\x02\x0d\xb8\x02\x61\x5a\xf1\xac\x40\xf8\xc0\xde\xb7\xb3\x90\xeb\xa5\x12\x91\x54\x7e\xfe\xb7\xd9\xc7\x8b\xcb\xeb\x0b\xc8\x65\x89\xd0\x8c\x19\xad\x1d\x08\x69\x30\x73\xda\x3c\x81\xce\xc1\x0d\x36\x73\x06\x91\x45\xa7\xe9\x7a\x1d\x45\x75\x0d\x02\x73\xa9\x10\xe2\xc7\x02\x0d\xc6\x10\x46\xdf\xc1\xa3\x74\x05\xe0\x37\x87\x4a\x40\x02\xf1\x17\x9e\x3d\xf0\x39\xc6\x90\xb0\xe6\x27\xbc\x5b\xaf\xa3\x51\x5d\x83\xc3\x45\x55\x72\x87\x10\x17\xc8\x05\x9a\x18\x18\x79\xa9\x6b\xa0\xb5\xcd\x2e\xbd\x91\x5c\x54\xda\xb8\x18\x12\x3f\x95\xa6\x30\x3b\xa7\xe0\x1d\x1a\x0b\x2b\x34\x4e\x66\x68\xe1\x9e\x13\x0a\xda\xa7\x23\x4d\x30\xc1\x52\xb0\x28\x5f\xaa\x0c\x66\xe7\x63\x29\xa0\xae\x21\x61\xb3\x73\x76\xf3\x54\x21\xac\xd7\x13\xa8\x0c\x0a\x99\x71\x87\xcc\x4f\x5d\xf2\x05\x8d\x43\x1d\x8d\x0c\xba\xa5\x51\x2f\x18\x8c\xa3\xd1\x88\x32\x4e\xdc\xa2\x2a\xe1\xa7\x33\xa8\x8c\x54\x2e\x87\x58\x48\x5e\x62\xe6\xd2\x13\x9b\x76\x2b\x53\x29\x08\x83\x6b\xa7\x0d\x61\x40\x10\xf8\xc5\xdf\xba\x04\x83\x9b\x24\xc0\x33\x89\x42\xfa\x86\xab\x39\x42\xa2\x2b\xf2\xaf\x2b\xeb\x23\x87\x06\xc0\x84\x9b\x39\x8d\xc7\xe4\x7b\xbd\xae\x6b\x90\x39\xd9\xb2\x3f\xb9\x91\x5c\xc8\x2c\x0c\x7a\x33\x6f\x65\x1b\xb3\x06\x5f\xef\xc3\x03\x33\x08\x7e\x76\x7e\x62\x63\xef\xa5\x49\x33\x1a\xa5\x29\x74\x96\xeb\x35\xf0\xaa\x2a\x25\x5a\xcf\x18\x1a\xef\x4d\x7b\xa0\x9a\x12\x0c\x0a\x30\xf2\xcb\x07\x7e\xc6\x6d\x68\x04\xf5\xae\xd0\x19\x63\x5d\xac\xaf\xa8\xd9\xe1\xa2\x8d\x76\xf0\x74\x6a\xe6\x71\x08\x27\xbe\xaa\x7c\xfe\x10\x37\xc5\x1a\xd6\xcd\x17\xc7\x7b\x38\xba\xec\xa9\xae\xec\xb3\xd2\xef\x2e\x3e\x6b\x26\x69\x8e\xe2\x0a\xbb\x4d\xa2\xd1\xb6\x2a\x1a\x5a\xe4\xb4\x7d\xc2\x3e\x11\xc2\xb6\xa9\x68\x7a\x0a\xbf\x5e\x5f\x5d\x42\xc6\x95\xd2\x0e\xee\xa9\x49\x2c\x2a\x6e\xa8\x39\x58\xa9\xe6\x10\x9f\xc5\xc0\x95\x80\x0b\xb5\x5c\x40\xc1\x2d\x70\x70\x84\x6a\xd0\xb3\x08\xc0\x50\xed\x7c\xe1\x40\x11\x6e\x5e\xf4\x3e\xe9\x82\xdb\x2f\xb4\x2b\xf9\x1e\x6b\x03\x49\xce\x66\xd6\x6f\xe8\x7f\x91\xd3\x49\xc7\xad\xb0\x33\xbf\x2f\xd1\x07\x9a\xb3\x8f\x5a\x91\x54\x51\xdc\xe8\x9f\xb9\xf5\x55\x8e\x7c\xb6\x32\xf7\x31\x05\xf7\xc3\x75\x8d\x50\x7a\xae\xaf\xe2\x7e\xac\xe5\x6e\x92\xb3\x6b\x67\x96\x99\xf3\x48\x84\xf9\x17\x48\x8b\x5f\x97\xbc\x94\xee\x09\xb2\x02\xb3\x87\xe7\x84\xad\x6b\xf8\xba\xd4\x54\x91\xbc\x23\x55\x60\x30\xcc\xdc\x7f\x2c\x48\x81\xca\xc9\x8c\x97\xe0\xf4\x70\x83\x8b\xdf\x59\x34\x3a\xc4\xf1\x24\x3f\x8a\xc0\x2d\x22\x49\xce\x3e\x73\xfb\x8b\x6e\xd6\x78\xda\xac\x7c\xc2\xc1\x97\x87\xd0\x4f\x76\xa8\x34\x1d\xa9\x51\xfc\x2a\x8b\xb7\x18\x15\xfe\x1d\x56\xc8\x01\x89\x78\x9c\x63\x22\x60\x2b\x88\xe3\x15\x91\x37\x6b\xb7\x05\xb1\x57\x11\x5b\x92\x20\x4d\x8c\x1a\xea\x34\x69\x1d\x2d\x10\xd2\xb6\xed\xda\x69\xde\x8e\xfa\x64\xbb\xa0\xd8\x55\x65\x7b\x9e\x91\xe5\x19\x51\x08\x95\xb0\xe1\xef\x38\xe3\x65\xb9\x65\x9f\xe4\x1d\xf5\x07\x1d\x76\xa3\x85\xfb\xb5\xdb\xed\x7b\x75\x4c\xf7\x5e\x1d\x6c\xde\xdb\x32\xd8\xe8\xe1\xbe\x3c\x44\x95\x20\x17\x62\x0d\x19\x53\x43\xe8\xf6\x6e\x05\xdc\x6c\xec\xcd\xcf\xc0\x19\xb9\x68\x8f\xee\x30\xd6\x1f\xe5\x1b\x01\x7d\xc7\x31\xf1\xb2\xea\x76\x9f\x1b\x32\xf7\x0d\xc8\xfb\x94\xe5\x16\x58\xc7\x9e\x27\x2e\xc8\xaa\x1b\xdb\xab\xc9\x56\x92\x9b\x2e\x89\x8a\x2b\x82\x74\xc1\x1f\x70\x7c\x7b\x27\x95\x43\x93\xf3\x0c\xeb\xf5\x7f\xa1\x44\x35\xd0\xff\x84\x28\x3b\xca\xb5\x01\x49\x0b\x02\x2b\x56\x41\xef\xbd\xda\x36\x54\x3d\x6e\x75\x74\x62\x6f\xe5\x5d\xd0\xde\xa4\x93\xcb\xea\x56\xde\x81\x6f\x05\x9b\x22\x29\x2d\xee\xb0\x69\xa2\xb8\x95\x77\x1b\x72\x0a\x86\x5d\x8b\xe8\xc8\x16\xf7\x37\x14\xef\xb0\xe9\xcf\xe3\x2d\xd4\x27\xbb\x7a\xd4\xa1\x16\xb5\xb3\x43\x6d\x04\xf4\xbd\x27\x78\xdf\x9e\xde\xf6\x30\xf7\x94\x7c\x9b\xf3\x7c\xd0\x24\x76\x76\xae\x20\x54\x76\x21\xe6\x68\x5f\x90\x7b\xfc\x99\x53\x20\xf8\xec\xec\xdb\x23\xc4\xcf\xdc\x92\xcb\x7d\x0a\xc4\x8e\xf7\x28\xe6\xb8\x4b\x80\x6f\x7f\xfb\xa2\x98\x28\x95\xd7\x97\x84\x62\x4c\x0b\xfe\x46\x15\x09\x29\xf6\x5b\x9e\xd8\xbf\xa4\x2b\xe2\x2e\xf5\xb7\xc5\x36\xa0\xc0\x61\x2e\x57\xa8\x20\xd3\x4a\x48\x27\xb5\xb2\x30\xd6\xae\x40\xd3\x3b\xb2\x93\x5d\x65\xa0\x69\x0b\x8c\xb1\x4d\xac\x31\x34\xf7\x66\xa3\x1f\xb1\x56\x8f\x01\xd3\xb7\xbb\x11\xa7\x29\x4c\x95\x80\xb9\xd1\xcb\xca\x0e\x60\xeb\xef\xb2\xd3\xcb\x73\xd0\x15\x1a\xee\xb4\x81\x7b\x74\x8f\x88\xbe\x36\x8b\xe6\xcb\x70\xaa\xc4\x78\xb0\xee\x19\xa8\xc7\xc0\xf9\x8a\x8f\xc5\x03\x40\x71\x75\xdc\xc7\x22\x1b\x7c\x2c\xa6\x29\x5c\x99\x7d\x10\x5c\xfd\xb1\x17\x81\x2b\xf3\x03\x01\xa0\xcd\x3f\xc9\xff\x52\xbb\x0d\x41\xd2\x61\xd5\xa5\xdc\x68\x31\x68\xad\x0f\x31\x24\x7f\xa9\xdd\xb8\x7a\x21\xf0\x7f\x27\x63\xa5\xdd\xab\x53\xde\x78\x1e\xf1\xcf\x30\x29\x17\xa1\x87\xf0\xb2\x7d\x28\xe9\xae\xb6\xb4\xdc\x86\xbb\x8a\xcb\x8a\x9b\x17\x17\xa6\xa7\xf1\xd6\xd5\xb5\x15\x77\xe3\xa2\xbd\x16\x3f\x7f\xba\x58\xef\x39\xd7\xfa\x9f\xe9\x29\x4c\xfb\xc0\x5d\xc1\x1d\x7d\xac\xd2\x97\xaa\x5e\xa1\x31\x52\x08\x54\x20\x15\x68\xe3\xdf\xb2\x34\x70\x21\xa0\x8f\x2f\x3c\x7a\xd1\x45\x8a\xea\xe9\x2f\x71\x55\xb8\x8e\xb2\xf0\x9d\xba\xfd\x36\xb5\x01\xca\xe0\xbe\xf7\x77\x00\x00\x00\xff\xff\xf7\x1f\x8d\xec\x88\x13\x00\x00") +var _templateWhereTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\xcf\x6f\xe3\xb6\x12\x3e\x5b\x7f\xc5\x40\x50\xf0\xec\xe0\x2d\xb5\x6f\x6f\xaf\x40\x0e\xee\x26\xdb\x75\x51\x24\xdb\x26\x68\x0f\x41\x0e\x8c\x38\xb2\x88\xc8\xa4\x96\xa4\x9d\x0d\x04\xff\xef\xc5\x90\xfa\x65\xc7\xb1\x9d\x6e\x50\xec\xcd\x26\x87\xc3\x99\x6f\xbe\x6f\x48\xb1\xae\xd3\xd3\xe8\xa3\xae\x9e\x8c\x9c\x17\x0e\x3e\xbc\xff\xdf\xff\xdf\x55\x06\x2d\x2a\x07\x9f\x78\x86\xf7\x5a\x3f\xc0\x4c\x65\x0c\xa6\x65\x09\xde\xc8\x02\xcd\x9b\x15\x0a\x16\xdd\x14\xd2\x82\xd5\x4b\x93\x21\x64\x5a\x20\x48\x0b\xa5\xcc\x50\x59\x14\xb0\x54\x02\x0d\xb8\x02\x61\x5a\xf1\xac\x40\xf8\xc0\xde\xb7\xb3\x90\xeb\xa5\x12\x91\x54\x7e\xfe\xb7\xd9\xc7\x8b\xcb\xeb\x0b\xc8\x65\x89\xd0\x8c\x19\xad\x1d\x08\x69\x30\x73\xda\x3c\x81\xce\xc1\x0d\x36\x73\x06\x91\x45\xa7\xe9\x7a\x1d\x45\x75\x0d\x02\x73\xa9\x10\xe2\xc7\x02\x0d\xc6\x10\x46\xdf\xc1\xa3\x74\x05\xe0\x37\x87\x4a\x40\x02\xf1\x17\x9e\x3d\xf0\x39\xc6\x90\xb0\xe6\x27\xbc\x5b\xaf\xa3\x51\x5d\x83\xc3\x45\x55\x72\x87\x10\x17\xc8\x05\x9a\x18\x18\x79\xa9\x6b\xa0\xb5\xcd\x2e\xbd\x91\x5c\x54\xda\xb8\x18\x12\x3f\x95\xa6\x30\x3b\xa7\xe0\x1d\x1a\x0b\x2b\x34\x4e\x66\x68\xe1\x9e\x13\x0a\xda\xa7\x23\x4d\x30\xc1\x52\xb0\x28\x5f\xaa\x0c\x66\xe7\x63\x29\xa0\xae\x21\x61\xb3\x73\x76\xf3\x54\x21\xac\xd7\x13\xa8\x0c\x0a\x99\x71\x87\xcc\x4f\x5d\xf2\x05\x8d\x43\x1d\x8d\x0c\xba\xa5\x51\x2f\x18\x8c\xa3\xd1\x88\x32\x4e\xdc\xa2\x2a\xe1\xa7\x33\xa8\x8c\x54\x2e\x87\x58\x48\x5e\x62\xe6\xd2\x13\x9b\x76\x2b\x53\x29\x08\x83\x6b\xa7\x0d\x61\x40\x10\xf8\xc5\xdf\xba\x04\x83\x9b\x24\xc0\x33\x89\x42\xfa\x86\xab\x39\x42\xa2\x2b\xf2\xaf\x2b\xeb\x23\x87\x06\xc0\x84\x9b\x39\x8d\xc7\xe4\x7b\xbd\xae\x6b\x90\x39\xd9\xb2\x3f\xb9\x91\x5c\xc8\x2c\x0c\x7a\x33\x6f\x65\x1b\xb3\x06\x5f\xef\xc3\x03\x33\x08\x7e\x76\x7e\x62\x63\xef\xa5\x49\x33\x1a\xa5\x29\x74\x96\xeb\x35\xf0\xaa\x2a\x25\x5a\xcf\x18\x1a\xef\x4d\x7b\xa0\x9a\x12\x0c\x0a\x30\xf2\xcb\x07\x7e\xc6\x6d\x68\x04\xf5\xae\xd0\x19\x63\x5d\xac\xaf\xa8\xd9\xe1\xa2\x8d\x76\xf0\x74\x6a\xe6\x71\x08\x27\xbe\xaa\x7c\xfe\x10\x37\xc5\x1a\xd6\xcd\x17\xc7\x7b\x38\xba\xec\xa9\xae\xec\xb3\xd2\xef\x2e\x3e\x6b\x26\x69\x8e\xe2\x0a\xbb\x4d\xa2\xd1\xb6\x2a\x1a\x5a\xe4\xb4\x7d\xc2\x3e\x11\xc2\xb6\xa9\x68\x7a\x0a\xbf\x5e\x5f\x5d\x42\xc6\x95\xd2\x0e\xee\xa9\x49\x2c\x2a\x6e\xa8\x39\x58\xa9\xe6\x10\x9f\xc5\xc0\x95\x80\x0b\xb5\x5c\x40\xc1\x2d\x70\x70\x84\x6a\xd0\xb3\x08\xc0\x50\xed\x7c\xe1\x40\x11\x6e\x5e\xf4\x3e\xe9\x82\xdb\x2f\xb4\x2b\xf9\x1e\x6b\x03\x49\xce\x66\xd6\x6f\xe8\x7f\x91\xd3\x49\xc7\xad\xb0\x33\xbf\x2f\xd1\x07\x9a\xb3\x8f\x5a\x91\x54\x51\xdc\xe8\x9f\xb9\xf5\x55\x8e\x7c\xb6\x32\xf7\x31\x05\xf7\xc3\x75\x8d\x50\x7a\xae\xaf\xe2\x7e\xac\xe5\x6e\x92\xb3\x6b\x67\x96\x99\xf3\x48\x84\xf9\x17\x48\x8b\x5f\x97\xbc\x94\xee\x09\xb2\x02\xb3\x87\xe7\x84\xad\x6b\xf8\xba\xd4\x54\x91\xbc\x23\x55\x60\x30\xcc\xdc\x7f\x2c\x48\x81\xca\xc9\x8c\x97\xe0\xf4\x70\x83\x8b\xdf\x59\x34\x3a\xc4\xf1\x24\x3f\x8a\xc0\x2d\x22\x49\xce\x3e\x73\xfb\x8b\x6e\xd6\x78\xda\xac\x7c\xc2\xc1\x97\x87\xd0\x4f\x76\xa8\x34\x1d\xa9\x51\xfc\x2a\x8b\xb7\x18\x15\xfe\x1d\x56\xc8\x01\x89\x78\x9c\x63\x22\x60\x2b\x88\xe3\x15\x91\x37\x6b\xb7\x05\xb1\x57\x11\x5b\x92\x20\x4d\x8c\x1a\xea\x34\x69\x1d\x2d\x10\xd2\xb6\xed\xda\x69\xde\x8e\xfa\x64\xbb\xa0\xd8\x55\x65\x7b\x9e\x91\xe5\x19\x51\x08\x95\xb0\xe1\xef\x38\xe3\x65\xb9\x65\x9f\xe4\x1d\xf5\x07\x1d\x76\xa3\x85\xfb\xb5\xdb\xed\x7b\x75\x4c\xf7\x5e\x1d\x6c\xde\xdb\x32\xd8\xe8\xe1\xbe\x3c\x44\x95\x20\x17\x62\x0d\x19\x53\x43\xe8\xf6\x6e\x05\xdc\x6c\xec\xcd\xcf\xc0\x19\xb9\x68\x8f\xee\x30\xd6\x1f\xe5\x1b\x01\x7d\xc7\x31\xf1\xb2\xea\x76\x9f\x1b\x32\xf7\x0d\xc8\xfb\x94\xe5\x16\x58\xc7\x9e\x27\x2e\xc8\xaa\x1b\xdb\xab\xc9\x56\x92\x9b\x2e\x89\x8a\x2b\x82\x74\xc1\x1f\x70\x7c\x7b\x27\x95\x43\x93\xf3\x0c\xeb\xf5\x7f\xa1\x44\x35\xd0\xff\x84\x28\x3b\xca\xb5\x01\x49\x0b\x02\x2b\x56\x41\xef\xbd\xda\x36\x54\x3d\x6e\x75\x74\x62\x6f\xe5\x5d\xd0\xde\xa4\x93\xcb\xea\x56\xde\x81\x6f\x05\x9b\x22\x29\x2d\xee\xb0\x69\xa2\xb8\x95\x77\x1b\x72\x0a\x86\x5d\x8b\xe8\xc8\x16\xf7\x37\x14\xef\xb0\xe9\xcf\xe3\x2d\xd4\x27\xbb\x7a\xd4\xa1\x16\xb5\xb3\x43\x6d\x04\xf4\xbd\x27\x78\xdf\x9e\xde\xf6\x30\xf7\x94\x7c\x9b\xf3\x7c\xd0\x24\x76\x76\xae\x20\x54\x76\x21\xe6\x68\x5f\x90\x7b\xfc\x99\x53\x20\xf8\xec\xec\xdb\x23\xc4\xcf\xdc\x92\xcb\x7d\x0a\xc4\x8e\xf7\x28\xe6\xb8\x4b\x80\x6f\x7f\xfb\xa2\x98\x28\x95\xd7\x97\x84\x62\x4c\x0b\xfe\x46\x15\x09\x29\xf6\x5b\x9e\xd8\xbf\xa4\x2b\xe2\x2e\xf5\xb7\xc5\x36\xa0\xc0\x61\x2e\x57\xa8\x20\xd3\x4a\x48\x27\xb5\xb2\x30\xd6\xae\x40\xd3\x3b\xb2\x93\x5d\x65\xa0\x69\x0b\x8c\xb1\x4d\xac\x31\x34\xf7\x66\xa3\x1f\xb1\x56\x8f\x01\xd3\xb7\xbb\x11\xa7\x29\x4c\x95\x80\xb9\xd1\xcb\xca\x0e\x60\xeb\xef\xb2\xd3\xcb\x73\xd0\x15\x1a\xee\xb4\x81\x7b\x74\x8f\x88\xbe\x36\x8b\xe6\xcb\x70\xaa\xc4\x78\xb0\xee\x19\xa8\xc7\xc0\xf9\x8a\x8f\xc5\x03\x40\x71\x75\xdc\xc7\x22\x1b\x7c\x2c\xa6\x29\x5c\x99\x7d\x10\x5c\xfd\xb1\x17\x81\x2b\xf3\x03\x01\xa0\xcd\x3f\xc9\xff\x52\xbb\x0d\x41\xd2\x61\xd5\xa5\xdc\x68\x31\x68\xad\x0f\x31\x24\x7f\xa9\xdd\xb8\x7a\x21\xf0\x7f\x27\x63\xa5\xdd\xab\x53\xde\x78\x1e\xf1\xcf\x30\x29\x17\xa1\x87\xf0\xb2\x7d\x28\xe9\xae\xb6\xb4\xdc\x86\xbb\x8a\xcb\x8a\x9b\x17\x17\xa6\xa7\xf1\xd6\xd5\xb5\x15\x77\xe3\xa2\xbd\x16\x3f\x7f\xba\x58\xef\x39\xd7\xfa\x9f\xe9\x29\x4c\xfb\xc0\x5d\xc1\x1d\x7d\xac\xd2\x97\xaa\x5e\xa1\x31\x52\x08\x54\x20\x15\x68\xe3\xdf\xb2\x34\x70\x21\xa0\x8f\x2f\x3c\x7a\xd1\x45\x8a\xea\xe9\x2f\x71\x55\xb8\x8e\xb2\xf0\x9d\xba\xfd\x36\xb5\x01\xca\xf0\xc6\xfa\x77\x00\x00\x00\xff\xff\x33\xec\xe2\x11\x89\x13\x00\x00") func templateWhereTmplBytes() ([]byte, error) { return bindataRead( @@ -1226,7 +1226,7 @@ func templateWhereTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "template/where.tmpl", size: 5000, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "template/where.tmpl", size: 5001, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/entc/gen/storage.go b/entc/gen/storage.go index 819de5dfb..9e20b78aa 100644 --- a/entc/gen/storage.go +++ b/entc/gen/storage.go @@ -8,8 +8,8 @@ import ( "fmt" "reflect" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/sql" ) // A SchemaMode defines what type of schema feature a storage driver support. @@ -52,9 +52,9 @@ var drivers = []*Storage{ Builder: reflect.TypeOf(&sql.Selector{}), Dialects: []string{"dialect.SQLite", "dialect.MySQL", "dialect.Postgres"}, Imports: []string{ - "github.com/facebook/ent/dialect/sql", - "github.com/facebook/ent/dialect/sql/sqlgraph", - "github.com/facebook/ent/schema/field", + "entgo.io/ent/dialect/sql", + "entgo.io/ent/dialect/sql/sqlgraph", + "entgo.io/ent/schema/field", }, SchemaMode: Unique | Indexes | Cascade | Migrate, Ops: func(f *Field) []Op { @@ -71,12 +71,12 @@ var drivers = []*Storage{ Builder: reflect.TypeOf(&dsl.Traversal{}), Dialects: []string{"dialect.Gremlin"}, Imports: []string{ - "github.com/facebook/ent/dialect/gremlin", - "github.com/facebook/ent/dialect/gremlin/graph/dsl", - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__", - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g", - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p", - "github.com/facebook/ent/dialect/gremlin/encoding/graphson", + "entgo.io/ent/dialect/gremlin", + "entgo.io/ent/dialect/gremlin/graph/dsl", + "entgo.io/ent/dialect/gremlin/graph/dsl/__", + "entgo.io/ent/dialect/gremlin/graph/dsl/g", + "entgo.io/ent/dialect/gremlin/graph/dsl/p", + "entgo.io/ent/dialect/gremlin/encoding/graphson", }, SchemaMode: Unique, OpCode: opCodes(gremlinCode[:]), diff --git a/entc/gen/template.go b/entc/gen/template.go index f19d2e7c1..085ebb8ef 100644 --- a/entc/gen/template.go +++ b/entc/gen/template.go @@ -16,7 +16,7 @@ import ( "text/template" "text/template/parse" - "github.com/facebook/ent/entc/gen/internal" + "entgo.io/ent/entc/gen/internal" ) //go:generate go run github.com/go-bindata/go-bindata/go-bindata -o=internal/bindata.go -pkg=internal -mode=420 -modtime=1 ./template/... diff --git a/entc/gen/template/builder/mutation.tmpl b/entc/gen/template/builder/mutation.tmpl index 2ccd855c1..2bcda6648 100644 --- a/entc/gen/template/builder/mutation.tmpl +++ b/entc/gen/template/builder/mutation.tmpl @@ -18,7 +18,7 @@ import ( "{{ $.Config.Package }}/{{ $n.Package }}" {{- end }} - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/gen/template/builder/update.tmpl b/entc/gen/template/builder/update.tmpl index e4bf851a4..0b78c1b5e 100644 --- a/entc/gen/template/builder/update.tmpl +++ b/entc/gen/template/builder/update.tmpl @@ -296,4 +296,4 @@ func ({{ $receiver }} *{{ $onebuilder }}) ExecX(ctx context.Context) { } {{ end }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/entc/gen/template/client.tmpl b/entc/gen/template/client.tmpl index cec81650d..ea9c9667c 100644 --- a/entc/gen/template/client.tmpl +++ b/entc/gen/template/client.tmpl @@ -17,7 +17,7 @@ import ( "{{ $n.Config.Package }}/{{ $n.Package }}" {{- end }} - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" {{ range $_, $import := $.Storage.Imports -}} "{{ $import }}" {{ end -}} diff --git a/entc/gen/template/dialect/sql/entql.tmpl b/entc/gen/template/dialect/sql/entql.tmpl index 8b25cab0b..1c1373b19 100644 --- a/entc/gen/template/dialect/sql/entql.tmpl +++ b/entc/gen/template/dialect/sql/entql.tmpl @@ -15,10 +15,10 @@ import ( "{{ $.Config.Package }}/{{ $n.Package }}" {{- end }} - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entql" + "entgo.io/ent/schema/field" ) // schemaGraph holds a representation of ent/schema at runtime. diff --git a/entc/gen/template/dialect/sql/feature/schemaconfig.tmpl b/entc/gen/template/dialect/sql/feature/schemaconfig.tmpl index 96bad6162..95ae96e30 100644 --- a/entc/gen/template/dialect/sql/feature/schemaconfig.tmpl +++ b/entc/gen/template/dialect/sql/feature/schemaconfig.tmpl @@ -178,4 +178,4 @@ func NewSchemaConfigContext(parent context.Context, config SchemaConfig) context {{- end }} {{- end }} step.Edge.Schema = schemaConfig.{{ $schema }} -{{- end -}} \ No newline at end of file +{{- end -}} diff --git a/entc/gen/template/dialect/sql/meta.tmpl b/entc/gen/template/dialect/sql/meta.tmpl index 71333b691..a5f2d8125 100644 --- a/entc/gen/template/dialect/sql/meta.tmpl +++ b/entc/gen/template/dialect/sql/meta.tmpl @@ -80,4 +80,4 @@ func ValidColumn(column string) bool { {{- end }} return false } -{{ end }} \ No newline at end of file +{{ end }} diff --git a/entc/gen/template/dialect/sql/query.tmpl b/entc/gen/template/dialect/sql/query.tmpl index 0b0b5a23c..8fb2260b4 100644 --- a/entc/gen/template/dialect/sql/query.tmpl +++ b/entc/gen/template/dialect/sql/query.tmpl @@ -379,4 +379,4 @@ func ({{ $receiver }} *{{ $builder }}) sqlQuery(ctx context.Context) *sql.Select return &ValidationError{Name: f, err: fmt.Errorf("{{ $pkg }}: invalid field %q for query", f)} } } -{{- end }} \ No newline at end of file +{{- end }} diff --git a/entc/gen/template/enttest.tmpl b/entc/gen/template/enttest.tmpl index fb93ec01d..3a6be9691 100644 --- a/entc/gen/template/enttest.tmpl +++ b/entc/gen/template/enttest.tmpl @@ -20,7 +20,7 @@ import ( _ "{{ $.Config.Package }}/runtime" {{ if $.SupportMigrate }} - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" {{ end }} ) diff --git a/entc/gen/template/import.tmpl b/entc/gen/template/import.tmpl index 30895b8ae..dc78ee047 100644 --- a/entc/gen/template/import.tmpl +++ b/entc/gen/template/import.tmpl @@ -21,8 +21,8 @@ import ( {{- /* Import external packages */}} {{- template "import/types" $ }} {{- end }} - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" {{- with $.Storage }} {{- range $import := .Imports }} "{{ $import }}" @@ -55,4 +55,4 @@ import ( {{- xtemplate $tmpl $ }} {{- end }} {{- end }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/entc/gen/template/internal.tmpl b/entc/gen/template/internal.tmpl index f85097101..f2c49e918 100644 --- a/entc/gen/template/internal.tmpl +++ b/entc/gen/template/internal.tmpl @@ -14,4 +14,4 @@ in the LICENSE file in the root directory of this source tree. package internal const Schema = `{{ .SchemaSnapshot }}` -{{ end }} \ No newline at end of file +{{ end }} diff --git a/entc/gen/template/migrate/migrate.tmpl b/entc/gen/template/migrate/migrate.tmpl index d2c98cd3b..74f2e4480 100644 --- a/entc/gen/template/migrate/migrate.tmpl +++ b/entc/gen/template/migrate/migrate.tmpl @@ -14,8 +14,8 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/gen/template/migrate/schema.tmpl b/entc/gen/template/migrate/schema.tmpl index e91ea07ec..f15da3556 100644 --- a/entc/gen/template/migrate/schema.tmpl +++ b/entc/gen/template/migrate/schema.tmpl @@ -15,9 +15,9 @@ import ( "{{ $.Config.Package }}/{{ $n.Package }}" {{- end }} - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/gen/template/predicate.tmpl b/entc/gen/template/predicate.tmpl index 3757b4f06..abd3f1e7b 100644 --- a/entc/gen/template/predicate.tmpl +++ b/entc/gen/template/predicate.tmpl @@ -13,8 +13,8 @@ in the LICENSE file in the root directory of this source tree. import ( "fmt" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/sql" ) {{ range $_, $n := $.Nodes -}} diff --git a/entc/gen/template/privacy/privacy.tmpl b/entc/gen/template/privacy/privacy.tmpl index 938d5c8cc..eaeb04b26 100644 --- a/entc/gen/template/privacy/privacy.tmpl +++ b/entc/gen/template/privacy/privacy.tmpl @@ -13,7 +13,7 @@ in the LICENSE file in the root directory of this source tree. import ( "{{ $.Config.Package }}" - "github.com/facebook/ent/privacy" + "entgo.io/ent/privacy" ) {{ $pkg := base $.Config.Package }} diff --git a/entc/gen/template/runtime.tmpl b/entc/gen/template/runtime.tmpl index 8d9f419d7..c56d713de 100644 --- a/entc/gen/template/runtime.tmpl +++ b/entc/gen/template/runtime.tmpl @@ -75,8 +75,8 @@ import ( {{- template "import/types" $n }} {{- end }} - "github.com/facebook/ent" - "github.com/facebook/ent/privacy" + "entgo.io/ent" + "entgo.io/ent/privacy" ) diff --git a/entc/gen/template/tx.tmpl b/entc/gen/template/tx.tmpl index 412a07ec9..f402506b3 100644 --- a/entc/gen/template/tx.tmpl +++ b/entc/gen/template/tx.tmpl @@ -12,7 +12,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/gen/template/where.tmpl b/entc/gen/template/where.tmpl index 86f82886a..c0720338f 100644 --- a/entc/gen/template/where.tmpl +++ b/entc/gen/template/where.tmpl @@ -150,4 +150,4 @@ func Not(p predicate.{{ $.Name }}) predicate.{{ $.Name }} { {{ end }} {{/* A template that can be overridden in order to add additional code for the type package. */}} -{{ define "where/additional" }}{{ end }} \ No newline at end of file +{{ define "where/additional" }}{{ end }} diff --git a/entc/gen/type.go b/entc/gen/type.go index a39a99b42..4653af17c 100644 --- a/entc/gen/type.go +++ b/entc/gen/type.go @@ -17,11 +17,11 @@ import ( "strings" "unicode" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/entc/load" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/entc/load" + "entgo.io/ent/schema/field" ) // The following types and their exported methods used by the codegen diff --git a/entc/gen/type_test.go b/entc/gen/type_test.go index f9dcef056..04cd8b345 100644 --- a/entc/gen/type_test.go +++ b/entc/gen/type_test.go @@ -7,8 +7,8 @@ package gen import ( "testing" - "github.com/facebook/ent/entc/load" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/entc/load" + "entgo.io/ent/schema/field" "github.com/stretchr/testify/require" ) diff --git a/entc/integration/config/config_test.go b/entc/integration/config/config_test.go index ed9d9218a..614d4a0c4 100644 --- a/entc/integration/config/config_test.go +++ b/entc/integration/config/config_test.go @@ -15,11 +15,11 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/config/ent" - "github.com/facebook/ent/entc/integration/config/ent/migrate" - "github.com/facebook/ent/entc/integration/config/ent/schema" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/config/ent" + "entgo.io/ent/entc/integration/config/ent/migrate" + "entgo.io/ent/entc/integration/config/ent/schema" _ "github.com/go-sql-driver/mysql" _ "github.com/mattn/go-sqlite3" diff --git a/entc/integration/config/ent/client.go b/entc/integration/config/ent/client.go index 0bf79d298..d764b1159 100644 --- a/entc/integration/config/ent/client.go +++ b/entc/integration/config/ent/client.go @@ -11,12 +11,12 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/config/ent/migrate" + "entgo.io/ent/entc/integration/config/ent/migrate" - "github.com/facebook/ent/entc/integration/config/ent/user" + "entgo.io/ent/entc/integration/config/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/config/ent/config.go b/entc/integration/config/ent/config.go index 97712c973..461de3d8d 100644 --- a/entc/integration/config/ent/config.go +++ b/entc/integration/config/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/config/ent/ent.go b/entc/integration/config/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/config/ent/ent.go +++ b/entc/integration/config/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/config/ent/enttest/enttest.go b/entc/integration/config/ent/enttest/enttest.go index 1246d9036..3473cb1a0 100644 --- a/entc/integration/config/ent/enttest/enttest.go +++ b/entc/integration/config/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/config/ent" + "entgo.io/ent/entc/integration/config/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/config/ent/runtime" + _ "entgo.io/ent/entc/integration/config/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/config/ent/generate.go b/entc/integration/config/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/entc/integration/config/ent/generate.go +++ b/entc/integration/config/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/config/ent/hook/hook.go b/entc/integration/config/ent/hook/hook.go index b0be3771e..a625b1e6e 100644 --- a/entc/integration/config/ent/hook/hook.go +++ b/entc/integration/config/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/config/ent" + "entgo.io/ent/entc/integration/config/ent" ) // The UserFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/config/ent/migrate/migrate.go b/entc/integration/config/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/config/ent/migrate/migrate.go +++ b/entc/integration/config/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/config/ent/migrate/schema.go b/entc/integration/config/ent/migrate/schema.go index 8df71a102..c82c4c79d 100644 --- a/entc/integration/config/ent/migrate/schema.go +++ b/entc/integration/config/ent/migrate/schema.go @@ -7,9 +7,9 @@ package migrate import ( - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/config/ent/mutation.go b/entc/integration/config/ent/mutation.go index 8f9a5a8dd..46b7b5574 100644 --- a/entc/integration/config/ent/mutation.go +++ b/entc/integration/config/ent/mutation.go @@ -11,10 +11,10 @@ import ( "fmt" "sync" - "github.com/facebook/ent/entc/integration/config/ent/predicate" - "github.com/facebook/ent/entc/integration/config/ent/user" + "entgo.io/ent/entc/integration/config/ent/predicate" + "entgo.io/ent/entc/integration/config/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/config/ent/predicate/predicate.go b/entc/integration/config/ent/predicate/predicate.go index 5df743681..e8922f489 100644 --- a/entc/integration/config/ent/predicate/predicate.go +++ b/entc/integration/config/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // User is the predicate function for user builders. diff --git a/entc/integration/config/ent/runtime/runtime.go b/entc/integration/config/ent/runtime/runtime.go index 07df5be3a..00f2dd6f4 100644 --- a/entc/integration/config/ent/runtime/runtime.go +++ b/entc/integration/config/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/config/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/config/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/config/ent/schema/user.go b/entc/integration/config/ent/schema/user.go index cfbe5dcdd..3afc45a4f 100644 --- a/entc/integration/config/ent/schema/user.go +++ b/entc/integration/config/ent/schema/user.go @@ -5,11 +5,11 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/schema" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/mixin" ) var ( diff --git a/entc/integration/config/ent/tx.go b/entc/integration/config/ent/tx.go index 1f608018b..f3aaeb4de 100644 --- a/entc/integration/config/ent/tx.go +++ b/entc/integration/config/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/config/ent/user.go b/entc/integration/config/ent/user.go index 969d7e4b2..0490faee0 100644 --- a/entc/integration/config/ent/user.go +++ b/entc/integration/config/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/config/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/config/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/config/ent/user/where.go b/entc/integration/config/ent/user/where.go index 4f9a3f28b..33917c9e9 100644 --- a/entc/integration/config/ent/user/where.go +++ b/entc/integration/config/ent/user/where.go @@ -7,8 +7,8 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/config/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/config/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/config/ent/user_create.go b/entc/integration/config/ent/user_create.go index 8edb4c1f9..a2b623077 100644 --- a/entc/integration/config/ent/user_create.go +++ b/entc/integration/config/ent/user_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/config/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/config/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/config/ent/user_delete.go b/entc/integration/config/ent/user_delete.go index c76192673..cec64efad 100644 --- a/entc/integration/config/ent/user_delete.go +++ b/entc/integration/config/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/config/ent/predicate" - "github.com/facebook/ent/entc/integration/config/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/config/ent/predicate" + "entgo.io/ent/entc/integration/config/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/config/ent/user_query.go b/entc/integration/config/ent/user_query.go index f567e70f6..4891e7946 100644 --- a/entc/integration/config/ent/user_query.go +++ b/entc/integration/config/ent/user_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/config/ent/predicate" - "github.com/facebook/ent/entc/integration/config/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/config/ent/predicate" + "entgo.io/ent/entc/integration/config/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/config/ent/user_update.go b/entc/integration/config/ent/user_update.go index de3be43b6..97b13bd4d 100644 --- a/entc/integration/config/ent/user_update.go +++ b/entc/integration/config/ent/user_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/config/ent/predicate" - "github.com/facebook/ent/entc/integration/config/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/config/ent/predicate" + "entgo.io/ent/entc/integration/config/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/customid/customid_test.go b/entc/integration/customid/customid_test.go index c97384267..dffb732b9 100644 --- a/entc/integration/customid/customid_test.go +++ b/entc/integration/customid/customid_test.go @@ -12,10 +12,10 @@ import ( "strconv" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/entc/integration/customid/ent" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/user" + "entgo.io/ent/dialect" + "entgo.io/ent/entc/integration/customid/ent" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/user" "github.com/go-sql-driver/mysql" "github.com/google/uuid" diff --git a/entc/integration/customid/ent/blob.go b/entc/integration/customid/ent/blob.go index 6c709f3ac..42f69e7c5 100644 --- a/entc/integration/customid/ent/blob.go +++ b/entc/integration/customid/ent/blob.go @@ -10,7 +10,7 @@ import ( "fmt" "strings" - "github.com/facebook/ent/entc/integration/customid/ent/blob" + "entgo.io/ent/entc/integration/customid/ent/blob" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/blob/where.go b/entc/integration/customid/ent/blob/where.go index 949d65600..70cc532ac 100644 --- a/entc/integration/customid/ent/blob/where.go +++ b/entc/integration/customid/ent/blob/where.go @@ -7,9 +7,9 @@ package blob import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/predicate" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/blob_create.go b/entc/integration/customid/ent/blob_create.go index fbf565ce5..13a589a8c 100644 --- a/entc/integration/customid/ent/blob_create.go +++ b/entc/integration/customid/ent/blob_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/blob" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/blob" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/blob_delete.go b/entc/integration/customid/ent/blob_delete.go index 49248863c..84e89f822 100644 --- a/entc/integration/customid/ent/blob_delete.go +++ b/entc/integration/customid/ent/blob_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/blob" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/blob" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" ) // BlobDelete is the builder for deleting a Blob entity. diff --git a/entc/integration/customid/ent/blob_query.go b/entc/integration/customid/ent/blob_query.go index b4481f8b8..83c92a85c 100644 --- a/entc/integration/customid/ent/blob_query.go +++ b/entc/integration/customid/ent/blob_query.go @@ -13,11 +13,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/blob" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/blob" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/blob_update.go b/entc/integration/customid/ent/blob_update.go index 8fc1a4d6c..afeb1b4bf 100644 --- a/entc/integration/customid/ent/blob_update.go +++ b/entc/integration/customid/ent/blob_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/blob" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/blob" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/car.go b/entc/integration/customid/ent/car.go index 64db18e41..3611e778b 100644 --- a/entc/integration/customid/ent/car.go +++ b/entc/integration/customid/ent/car.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/pet" ) // Car is the model entity for the Car schema. diff --git a/entc/integration/customid/ent/car/where.go b/entc/integration/customid/ent/car/where.go index 9e262d689..1a2f7ff0e 100644 --- a/entc/integration/customid/ent/car/where.go +++ b/entc/integration/customid/ent/car/where.go @@ -7,9 +7,9 @@ package car import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/customid/ent/car_create.go b/entc/integration/customid/ent/car_create.go index 65669d9b1..9755e032e 100644 --- a/entc/integration/customid/ent/car_create.go +++ b/entc/integration/customid/ent/car_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/schema/field" ) // CarCreate is the builder for creating a Car entity. diff --git a/entc/integration/customid/ent/car_delete.go b/entc/integration/customid/ent/car_delete.go index f1bacbb13..0c3bc734f 100644 --- a/entc/integration/customid/ent/car_delete.go +++ b/entc/integration/customid/ent/car_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" ) // CarDelete is the builder for deleting a Car entity. diff --git a/entc/integration/customid/ent/car_query.go b/entc/integration/customid/ent/car_query.go index bcdc97e80..0963482bb 100644 --- a/entc/integration/customid/ent/car_query.go +++ b/entc/integration/customid/ent/car_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" ) // CarQuery is the builder for querying Car entities. diff --git a/entc/integration/customid/ent/car_update.go b/entc/integration/customid/ent/car_update.go index 2d3389626..fd53d81c2 100644 --- a/entc/integration/customid/ent/car_update.go +++ b/entc/integration/customid/ent/car_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" ) // CarUpdate is the builder for updating Car entities. diff --git a/entc/integration/customid/ent/client.go b/entc/integration/customid/ent/client.go index dae46a547..318f369d9 100644 --- a/entc/integration/customid/ent/client.go +++ b/entc/integration/customid/ent/client.go @@ -11,19 +11,19 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/customid/ent/migrate" + "entgo.io/ent/entc/integration/customid/ent/migrate" "github.com/google/uuid" - "github.com/facebook/ent/entc/integration/customid/ent/blob" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/mixinid" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/user" + "entgo.io/ent/entc/integration/customid/ent/blob" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/mixinid" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/customid/ent/config.go b/entc/integration/customid/ent/config.go index 23f49777e..bd0ce2f3b 100644 --- a/entc/integration/customid/ent/config.go +++ b/entc/integration/customid/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/customid/ent/ent.go b/entc/integration/customid/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/customid/ent/ent.go +++ b/entc/integration/customid/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/customid/ent/enttest/enttest.go b/entc/integration/customid/ent/enttest/enttest.go index 71548942d..75d956ea6 100644 --- a/entc/integration/customid/ent/enttest/enttest.go +++ b/entc/integration/customid/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/customid/ent" + "entgo.io/ent/entc/integration/customid/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/customid/ent/runtime" + _ "entgo.io/ent/entc/integration/customid/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/customid/ent/generate.go b/entc/integration/customid/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/entc/integration/customid/ent/generate.go +++ b/entc/integration/customid/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/customid/ent/group.go b/entc/integration/customid/ent/group.go index a2878f71a..4dc70c501 100644 --- a/entc/integration/customid/ent/group.go +++ b/entc/integration/customid/ent/group.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/customid/ent/group" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/customid/ent/group" ) // Group is the model entity for the Group schema. diff --git a/entc/integration/customid/ent/group/where.go b/entc/integration/customid/ent/group/where.go index 32793321c..d66f77b74 100644 --- a/entc/integration/customid/ent/group/where.go +++ b/entc/integration/customid/ent/group/where.go @@ -7,9 +7,9 @@ package group import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/customid/ent/group_create.go b/entc/integration/customid/ent/group_create.go index a90c94315..52d44e1fc 100644 --- a/entc/integration/customid/ent/group_create.go +++ b/entc/integration/customid/ent/group_create.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/entc/integration/customid/ent/group_delete.go b/entc/integration/customid/ent/group_delete.go index 79cd2a21d..3a06934b6 100644 --- a/entc/integration/customid/ent/group_delete.go +++ b/entc/integration/customid/ent/group_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/entc/integration/customid/ent/group_query.go b/entc/integration/customid/ent/group_query.go index e30c22040..0f8bdc75d 100644 --- a/entc/integration/customid/ent/group_query.go +++ b/entc/integration/customid/ent/group_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/entc/integration/customid/ent/group_update.go b/entc/integration/customid/ent/group_update.go index c88dc2ae3..5a4453494 100644 --- a/entc/integration/customid/ent/group_update.go +++ b/entc/integration/customid/ent/group_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/entc/integration/customid/ent/hook/hook.go b/entc/integration/customid/ent/hook/hook.go index 2216f1a32..8f9bcf24d 100644 --- a/entc/integration/customid/ent/hook/hook.go +++ b/entc/integration/customid/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/customid/ent" + "entgo.io/ent/entc/integration/customid/ent" ) // The BlobFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/customid/ent/migrate/migrate.go b/entc/integration/customid/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/customid/ent/migrate/migrate.go +++ b/entc/integration/customid/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/customid/ent/migrate/schema.go b/entc/integration/customid/ent/migrate/schema.go index 40fc1e06c..259d20049 100644 --- a/entc/integration/customid/ent/migrate/schema.go +++ b/entc/integration/customid/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/customid/ent/mixinid.go b/entc/integration/customid/ent/mixinid.go index 372f74849..1c0a30d2c 100644 --- a/entc/integration/customid/ent/mixinid.go +++ b/entc/integration/customid/ent/mixinid.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/customid/ent/mixinid" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/customid/ent/mixinid" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/mixinid/where.go b/entc/integration/customid/ent/mixinid/where.go index 24e66b480..07b69531e 100644 --- a/entc/integration/customid/ent/mixinid/where.go +++ b/entc/integration/customid/ent/mixinid/where.go @@ -7,8 +7,8 @@ package mixinid import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/customid/ent/predicate" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/mixinid_create.go b/entc/integration/customid/ent/mixinid_create.go index 49ca3bae8..fcb59a3fb 100644 --- a/entc/integration/customid/ent/mixinid_create.go +++ b/entc/integration/customid/ent/mixinid_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/mixinid" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/mixinid" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/mixinid_delete.go b/entc/integration/customid/ent/mixinid_delete.go index 7716b28aa..868f1dcf4 100644 --- a/entc/integration/customid/ent/mixinid_delete.go +++ b/entc/integration/customid/ent/mixinid_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/mixinid" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/mixinid" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" ) // MixinIDDelete is the builder for deleting a MixinID entity. diff --git a/entc/integration/customid/ent/mixinid_query.go b/entc/integration/customid/ent/mixinid_query.go index 13f889182..5e6cf1b39 100644 --- a/entc/integration/customid/ent/mixinid_query.go +++ b/entc/integration/customid/ent/mixinid_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/mixinid" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/mixinid" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/mixinid_update.go b/entc/integration/customid/ent/mixinid_update.go index 750cd9c2a..fb63194d0 100644 --- a/entc/integration/customid/ent/mixinid_update.go +++ b/entc/integration/customid/ent/mixinid_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/mixinid" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/mixinid" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" ) // MixinIDUpdate is the builder for updating MixinID entities. diff --git a/entc/integration/customid/ent/mutation.go b/entc/integration/customid/ent/mutation.go index 8f326daf0..e074d14be 100644 --- a/entc/integration/customid/ent/mutation.go +++ b/entc/integration/customid/ent/mutation.go @@ -11,16 +11,16 @@ import ( "fmt" "sync" - "github.com/facebook/ent/entc/integration/customid/ent/blob" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/mixinid" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/entc/integration/customid/ent/user" + "entgo.io/ent/entc/integration/customid/ent/blob" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/mixinid" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/entc/integration/customid/ent/user" "github.com/google/uuid" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/customid/ent/pet.go b/entc/integration/customid/ent/pet.go index 2a555b738..f74b68019 100644 --- a/entc/integration/customid/ent/pet.go +++ b/entc/integration/customid/ent/pet.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/user" ) // Pet is the model entity for the Pet schema. diff --git a/entc/integration/customid/ent/pet/where.go b/entc/integration/customid/ent/pet/where.go index 043b16970..b6e6b259e 100644 --- a/entc/integration/customid/ent/pet/where.go +++ b/entc/integration/customid/ent/pet/where.go @@ -7,9 +7,9 @@ package pet import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/customid/ent/pet_create.go b/entc/integration/customid/ent/pet_create.go index 8c4245b51..0a3838d0b 100644 --- a/entc/integration/customid/ent/pet_create.go +++ b/entc/integration/customid/ent/pet_create.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // PetCreate is the builder for creating a Pet entity. diff --git a/entc/integration/customid/ent/pet_delete.go b/entc/integration/customid/ent/pet_delete.go index 5733ce12e..e97352071 100644 --- a/entc/integration/customid/ent/pet_delete.go +++ b/entc/integration/customid/ent/pet_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/schema/field" ) // PetDelete is the builder for deleting a Pet entity. diff --git a/entc/integration/customid/ent/pet_query.go b/entc/integration/customid/ent/pet_query.go index 3c2a16c02..a81a41b8e 100644 --- a/entc/integration/customid/ent/pet_query.go +++ b/entc/integration/customid/ent/pet_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // PetQuery is the builder for querying Pet entities. diff --git a/entc/integration/customid/ent/pet_update.go b/entc/integration/customid/ent/pet_update.go index 9e0f0ac0a..ee451a6a7 100644 --- a/entc/integration/customid/ent/pet_update.go +++ b/entc/integration/customid/ent/pet_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // PetUpdate is the builder for updating Pet entities. diff --git a/entc/integration/customid/ent/predicate/predicate.go b/entc/integration/customid/ent/predicate/predicate.go index 4329cf9e8..975f8b49e 100644 --- a/entc/integration/customid/ent/predicate/predicate.go +++ b/entc/integration/customid/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Blob is the predicate function for blob builders. diff --git a/entc/integration/customid/ent/runtime.go b/entc/integration/customid/ent/runtime.go index 5a171c67a..e7ba64eab 100644 --- a/entc/integration/customid/ent/runtime.go +++ b/entc/integration/customid/ent/runtime.go @@ -7,11 +7,11 @@ package ent import ( - "github.com/facebook/ent/entc/integration/customid/ent/blob" - "github.com/facebook/ent/entc/integration/customid/ent/car" - "github.com/facebook/ent/entc/integration/customid/ent/mixinid" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/schema" + "entgo.io/ent/entc/integration/customid/ent/blob" + "entgo.io/ent/entc/integration/customid/ent/car" + "entgo.io/ent/entc/integration/customid/ent/mixinid" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/schema" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/runtime/runtime.go b/entc/integration/customid/ent/runtime/runtime.go index a6c183aa5..a7ee02944 100644 --- a/entc/integration/customid/ent/runtime/runtime.go +++ b/entc/integration/customid/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/customid/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/customid/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/customid/ent/schema/blob.go b/entc/integration/customid/ent/schema/blob.go index e005bd608..2938d388d 100644 --- a/entc/integration/customid/ent/schema/blob.go +++ b/entc/integration/customid/ent/schema/blob.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/schema/car.go b/entc/integration/customid/ent/schema/car.go index 812924098..7b76cce18 100644 --- a/entc/integration/customid/ent/schema/car.go +++ b/entc/integration/customid/ent/schema/car.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/mixin" ) type IDMixin struct { diff --git a/entc/integration/customid/ent/schema/group.go b/entc/integration/customid/ent/schema/group.go index cebe7c7fa..71e6743c3 100644 --- a/entc/integration/customid/ent/schema/group.go +++ b/entc/integration/customid/ent/schema/group.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Group holds the schema definition for the Group entity. diff --git a/entc/integration/customid/ent/schema/mixinid.go b/entc/integration/customid/ent/schema/mixinid.go index 3fb1ad9da..ce03d9949 100644 --- a/entc/integration/customid/ent/schema/mixinid.go +++ b/entc/integration/customid/ent/schema/mixinid.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" + "entgo.io/ent/schema/mixin" "github.com/google/uuid" ) diff --git a/entc/integration/customid/ent/schema/pet.go b/entc/integration/customid/ent/schema/pet.go index 1e5d443cb..02f72b851 100644 --- a/entc/integration/customid/ent/schema/pet.go +++ b/entc/integration/customid/ent/schema/pet.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Pet holds the schema definition for the Pet entity. diff --git a/entc/integration/customid/ent/schema/user.go b/entc/integration/customid/ent/schema/user.go index ca28b9c63..2dc93a175 100644 --- a/entc/integration/customid/ent/schema/user.go +++ b/entc/integration/customid/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/entc/integration/customid/ent/tx.go b/entc/integration/customid/ent/tx.go index d6f159d0d..c45c1f9de 100644 --- a/entc/integration/customid/ent/tx.go +++ b/entc/integration/customid/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/customid/ent/user.go b/entc/integration/customid/ent/user.go index 80e8003ad..f93e3cc96 100644 --- a/entc/integration/customid/ent/user.go +++ b/entc/integration/customid/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/customid/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/customid/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/customid/ent/user/where.go b/entc/integration/customid/ent/user/where.go index 636309b9f..c051422ed 100644 --- a/entc/integration/customid/ent/user/where.go +++ b/entc/integration/customid/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/customid/ent/user_create.go b/entc/integration/customid/ent/user_create.go index 73e5b9bba..3ec4918a4 100644 --- a/entc/integration/customid/ent/user_create.go +++ b/entc/integration/customid/ent/user_create.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/customid/ent/user_delete.go b/entc/integration/customid/ent/user_delete.go index ab66954ed..e8bb74bdc 100644 --- a/entc/integration/customid/ent/user_delete.go +++ b/entc/integration/customid/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/customid/ent/user_query.go b/entc/integration/customid/ent/user_query.go index 12310663f..e864dde78 100644 --- a/entc/integration/customid/ent/user_query.go +++ b/entc/integration/customid/ent/user_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/customid/ent/user_update.go b/entc/integration/customid/ent/user_update.go index 2be5d59f2..b90ec7a17 100644 --- a/entc/integration/customid/ent/user_update.go +++ b/entc/integration/customid/ent/user_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/customid/ent/group" - "github.com/facebook/ent/entc/integration/customid/ent/pet" - "github.com/facebook/ent/entc/integration/customid/ent/predicate" - "github.com/facebook/ent/entc/integration/customid/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/customid/ent/group" + "entgo.io/ent/entc/integration/customid/ent/pet" + "entgo.io/ent/entc/integration/customid/ent/predicate" + "entgo.io/ent/entc/integration/customid/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/ent/card.go b/entc/integration/ent/card.go index 819737d11..d8dffde67 100644 --- a/entc/integration/ent/card.go +++ b/entc/integration/ent/card.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/user" ) // Card is the model entity for the Card schema. diff --git a/entc/integration/ent/card/where.go b/entc/integration/ent/card/where.go index 2eddbd988..d2497d2d0 100644 --- a/entc/integration/ent/card/where.go +++ b/entc/integration/ent/card/where.go @@ -9,9 +9,9 @@ package card import ( "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/card_create.go b/entc/integration/ent/card_create.go index 76ced38c6..9008bb650 100644 --- a/entc/integration/ent/card_create.go +++ b/entc/integration/ent/card_create.go @@ -12,11 +12,11 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // CardCreate is the builder for creating a Card entity. diff --git a/entc/integration/ent/card_delete.go b/entc/integration/ent/card_delete.go index 7ff425683..5cd56989e 100644 --- a/entc/integration/ent/card_delete.go +++ b/entc/integration/ent/card_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // CardDelete is the builder for deleting a Card entity. diff --git a/entc/integration/ent/card_query.go b/entc/integration/ent/card_query.go index fbaa3863c..3e975fd96 100644 --- a/entc/integration/ent/card_query.go +++ b/entc/integration/ent/card_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // CardQuery is the builder for querying Card entities. diff --git a/entc/integration/ent/card_update.go b/entc/integration/ent/card_update.go index 5698c5a9f..91053e8df 100644 --- a/entc/integration/ent/card_update.go +++ b/entc/integration/ent/card_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // CardUpdate is the builder for updating Card entities. diff --git a/entc/integration/ent/client.go b/entc/integration/ent/client.go index eaa1d7910..589710d93 100644 --- a/entc/integration/ent/client.go +++ b/entc/integration/ent/client.go @@ -11,26 +11,26 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/ent/migrate" + "entgo.io/ent/entc/integration/ent/migrate" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/comment" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/goods" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/item" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/entc/integration/ent/task" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/comment" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/goods" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/item" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/entc/integration/ent/task" + "entgo.io/ent/entc/integration/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/ent/comment.go b/entc/integration/ent/comment.go index 8b893e93b..474d75bd4 100644 --- a/entc/integration/ent/comment.go +++ b/entc/integration/ent/comment.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/comment" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/comment" ) // Comment is the model entity for the Comment schema. diff --git a/entc/integration/ent/comment/where.go b/entc/integration/ent/comment/where.go index 0ce6d9c20..d81ab0073 100644 --- a/entc/integration/ent/comment/where.go +++ b/entc/integration/ent/comment/where.go @@ -7,8 +7,8 @@ package comment import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/comment_create.go b/entc/integration/ent/comment_create.go index ccfb30d77..bd12d2794 100644 --- a/entc/integration/ent/comment_create.go +++ b/entc/integration/ent/comment_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/comment" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/comment" + "entgo.io/ent/schema/field" ) // CommentCreate is the builder for creating a Comment entity. diff --git a/entc/integration/ent/comment_delete.go b/entc/integration/ent/comment_delete.go index 77824cfd9..40801ee42 100644 --- a/entc/integration/ent/comment_delete.go +++ b/entc/integration/ent/comment_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/comment" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/comment" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // CommentDelete is the builder for deleting a Comment entity. diff --git a/entc/integration/ent/comment_query.go b/entc/integration/ent/comment_query.go index 01fbc480a..0ceb7b10e 100644 --- a/entc/integration/ent/comment_query.go +++ b/entc/integration/ent/comment_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/comment" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/comment" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // CommentQuery is the builder for querying Comment entities. diff --git a/entc/integration/ent/comment_update.go b/entc/integration/ent/comment_update.go index 39a1a150a..548cc0857 100644 --- a/entc/integration/ent/comment_update.go +++ b/entc/integration/ent/comment_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/comment" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/comment" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // CommentUpdate is the builder for updating Comment entities. diff --git a/entc/integration/ent/config.go b/entc/integration/ent/config.go index c80f23ede..b47ceb000 100644 --- a/entc/integration/ent/config.go +++ b/entc/integration/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/ent/ent.go b/entc/integration/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/ent/ent.go +++ b/entc/integration/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/ent/entql.go b/entc/integration/ent/entql.go index e8e9bdbd2..6cee01679 100644 --- a/entc/integration/ent/entql.go +++ b/entc/integration/ent/entql.go @@ -7,26 +7,26 @@ package ent import ( - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/comment" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/goods" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/item" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/entc/integration/ent/task" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/comment" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/goods" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/item" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/entc/integration/ent/task" + "entgo.io/ent/entc/integration/ent/user" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entql" + "entgo.io/ent/schema/field" ) // schemaGraph holds a representation of ent/schema at runtime. diff --git a/entc/integration/ent/enttest/enttest.go b/entc/integration/ent/enttest/enttest.go index 916923b3b..c8fe491ed 100644 --- a/entc/integration/ent/enttest/enttest.go +++ b/entc/integration/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/ent" + "entgo.io/ent/entc/integration/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/ent/runtime" + _ "entgo.io/ent/entc/integration/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/ent/fieldtype.go b/entc/integration/ent/fieldtype.go index 5e63366e5..0c87cf509 100644 --- a/entc/integration/ent/fieldtype.go +++ b/entc/integration/ent/fieldtype.go @@ -13,10 +13,10 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" "github.com/google/uuid" ) diff --git a/entc/integration/ent/fieldtype/fieldtype.go b/entc/integration/ent/fieldtype/fieldtype.go index 33cdf200c..24f1ac3f9 100644 --- a/entc/integration/ent/fieldtype/fieldtype.go +++ b/entc/integration/ent/fieldtype/fieldtype.go @@ -10,8 +10,8 @@ import ( "fmt" "net" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/role" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/role" ) const ( diff --git a/entc/integration/ent/fieldtype/where.go b/entc/integration/ent/fieldtype/where.go index 87f4efe57..1e46985ac 100644 --- a/entc/integration/ent/fieldtype/where.go +++ b/entc/integration/ent/fieldtype/where.go @@ -11,10 +11,10 @@ import ( "net/http" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" "github.com/google/uuid" ) diff --git a/entc/integration/ent/fieldtype_create.go b/entc/integration/ent/fieldtype_create.go index e5975c3a1..184e9e4f8 100644 --- a/entc/integration/ent/fieldtype_create.go +++ b/entc/integration/ent/fieldtype_create.go @@ -14,12 +14,12 @@ import ( "net/http" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/ent/fieldtype_delete.go b/entc/integration/ent/fieldtype_delete.go index fce5b00c3..669ef85c0 100644 --- a/entc/integration/ent/fieldtype_delete.go +++ b/entc/integration/ent/fieldtype_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // FieldTypeDelete is the builder for deleting a FieldType entity. diff --git a/entc/integration/ent/fieldtype_query.go b/entc/integration/ent/fieldtype_query.go index 9718a6dae..73929c3f8 100644 --- a/entc/integration/ent/fieldtype_query.go +++ b/entc/integration/ent/fieldtype_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // FieldTypeQuery is the builder for querying FieldType entities. diff --git a/entc/integration/ent/fieldtype_update.go b/entc/integration/ent/fieldtype_update.go index 73d6b8382..943204551 100644 --- a/entc/integration/ent/fieldtype_update.go +++ b/entc/integration/ent/fieldtype_update.go @@ -13,13 +13,13 @@ import ( "net/http" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/ent/file.go b/entc/integration/ent/file.go index 81769eb00..0497f312d 100644 --- a/entc/integration/ent/file.go +++ b/entc/integration/ent/file.go @@ -10,10 +10,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/user" ) // File is the model entity for the File schema. diff --git a/entc/integration/ent/file/where.go b/entc/integration/ent/file/where.go index 96c36c17c..638fdef40 100644 --- a/entc/integration/ent/file/where.go +++ b/entc/integration/ent/file/where.go @@ -7,9 +7,9 @@ package file import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/file_create.go b/entc/integration/ent/file_create.go index dcad3dea9..541c39503 100644 --- a/entc/integration/ent/file_create.go +++ b/entc/integration/ent/file_create.go @@ -11,12 +11,12 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // FileCreate is the builder for creating a File entity. diff --git a/entc/integration/ent/file_delete.go b/entc/integration/ent/file_delete.go index b27b3964a..2ec7ed813 100644 --- a/entc/integration/ent/file_delete.go +++ b/entc/integration/ent/file_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // FileDelete is the builder for deleting a File entity. diff --git a/entc/integration/ent/file_query.go b/entc/integration/ent/file_query.go index ff63fba9f..440520bf3 100644 --- a/entc/integration/ent/file_query.go +++ b/entc/integration/ent/file_query.go @@ -13,14 +13,14 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // FileQuery is the builder for querying File entities. diff --git a/entc/integration/ent/file_update.go b/entc/integration/ent/file_update.go index 992a6e345..14b7e8841 100644 --- a/entc/integration/ent/file_update.go +++ b/entc/integration/ent/file_update.go @@ -10,14 +10,14 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // FileUpdate is the builder for updating File entities. diff --git a/entc/integration/ent/filetype.go b/entc/integration/ent/filetype.go index 7f798a43e..4a4bd5e68 100644 --- a/entc/integration/ent/filetype.go +++ b/entc/integration/ent/filetype.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/filetype" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/filetype" ) // FileType is the model entity for the FileType schema. diff --git a/entc/integration/ent/filetype/where.go b/entc/integration/ent/filetype/where.go index 8bba16adb..3b2f9ba2a 100644 --- a/entc/integration/ent/filetype/where.go +++ b/entc/integration/ent/filetype/where.go @@ -7,9 +7,9 @@ package filetype import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/filetype_create.go b/entc/integration/ent/filetype_create.go index 22fc97d10..596e3a140 100644 --- a/entc/integration/ent/filetype_create.go +++ b/entc/integration/ent/filetype_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/schema/field" ) // FileTypeCreate is the builder for creating a FileType entity. diff --git a/entc/integration/ent/filetype_delete.go b/entc/integration/ent/filetype_delete.go index 9ebc4e72a..c77eee3e7 100644 --- a/entc/integration/ent/filetype_delete.go +++ b/entc/integration/ent/filetype_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // FileTypeDelete is the builder for deleting a FileType entity. diff --git a/entc/integration/ent/filetype_query.go b/entc/integration/ent/filetype_query.go index 1a481137e..7000b0794 100644 --- a/entc/integration/ent/filetype_query.go +++ b/entc/integration/ent/filetype_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // FileTypeQuery is the builder for querying FileType entities. diff --git a/entc/integration/ent/filetype_update.go b/entc/integration/ent/filetype_update.go index 5b2af7c2c..d02646cbf 100644 --- a/entc/integration/ent/filetype_update.go +++ b/entc/integration/ent/filetype_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // FileTypeUpdate is the builder for updating FileType entities. diff --git a/entc/integration/ent/generate.go b/entc/integration/ent/generate.go index b23b49ae2..9a3999581 100644 --- a/entc/integration/ent/generate.go +++ b/entc/integration/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --feature entql --template ./template --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --feature entql --template ./template --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/ent/goods.go b/entc/integration/ent/goods.go index 42ad3bc18..27a92a6f3 100644 --- a/entc/integration/ent/goods.go +++ b/entc/integration/ent/goods.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/goods" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/goods" ) // Goods is the model entity for the Goods schema. diff --git a/entc/integration/ent/goods/where.go b/entc/integration/ent/goods/where.go index 40db4cfc5..0f535c9f6 100644 --- a/entc/integration/ent/goods/where.go +++ b/entc/integration/ent/goods/where.go @@ -7,8 +7,8 @@ package goods import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/goods_create.go b/entc/integration/ent/goods_create.go index 5421ae026..a66700e28 100644 --- a/entc/integration/ent/goods_create.go +++ b/entc/integration/ent/goods_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/goods" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/goods" + "entgo.io/ent/schema/field" ) // GoodsCreate is the builder for creating a Goods entity. diff --git a/entc/integration/ent/goods_delete.go b/entc/integration/ent/goods_delete.go index f9cc44708..203b55bbf 100644 --- a/entc/integration/ent/goods_delete.go +++ b/entc/integration/ent/goods_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/goods" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/goods" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // GoodsDelete is the builder for deleting a Goods entity. diff --git a/entc/integration/ent/goods_query.go b/entc/integration/ent/goods_query.go index 84fc872fc..b17b62b56 100644 --- a/entc/integration/ent/goods_query.go +++ b/entc/integration/ent/goods_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/goods" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/goods" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // GoodsQuery is the builder for querying Goods entities. diff --git a/entc/integration/ent/goods_update.go b/entc/integration/ent/goods_update.go index 56273d3ae..efa6cafa4 100644 --- a/entc/integration/ent/goods_update.go +++ b/entc/integration/ent/goods_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/goods" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/goods" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // GoodsUpdate is the builder for updating Goods entities. diff --git a/entc/integration/ent/group.go b/entc/integration/ent/group.go index ace1f06ec..528100291 100644 --- a/entc/integration/ent/group.go +++ b/entc/integration/ent/group.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" ) // Group is the model entity for the Group schema. diff --git a/entc/integration/ent/group/where.go b/entc/integration/ent/group/where.go index ecd6c7eb9..6ad14ba33 100644 --- a/entc/integration/ent/group/where.go +++ b/entc/integration/ent/group/where.go @@ -9,9 +9,9 @@ package group import ( "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/group_create.go b/entc/integration/ent/group_create.go index 9c73fa14f..00c3ac51a 100644 --- a/entc/integration/ent/group_create.go +++ b/entc/integration/ent/group_create.go @@ -12,12 +12,12 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/entc/integration/ent/group_delete.go b/entc/integration/ent/group_delete.go index 4f77c0f77..65710edad 100644 --- a/entc/integration/ent/group_delete.go +++ b/entc/integration/ent/group_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/entc/integration/ent/group_query.go b/entc/integration/ent/group_query.go index 4d46fedae..071616d59 100644 --- a/entc/integration/ent/group_query.go +++ b/entc/integration/ent/group_query.go @@ -13,14 +13,14 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/entc/integration/ent/group_update.go b/entc/integration/ent/group_update.go index 395dadc5b..b1622e61c 100644 --- a/entc/integration/ent/group_update.go +++ b/entc/integration/ent/group_update.go @@ -12,14 +12,14 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/entc/integration/ent/groupinfo.go b/entc/integration/ent/groupinfo.go index 4fd7953cb..6bc6dd756 100644 --- a/entc/integration/ent/groupinfo.go +++ b/entc/integration/ent/groupinfo.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/groupinfo" ) // GroupInfo is the model entity for the GroupInfo schema. diff --git a/entc/integration/ent/groupinfo/where.go b/entc/integration/ent/groupinfo/where.go index 77f93af5c..c3678bf7b 100644 --- a/entc/integration/ent/groupinfo/where.go +++ b/entc/integration/ent/groupinfo/where.go @@ -7,9 +7,9 @@ package groupinfo import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/groupinfo_create.go b/entc/integration/ent/groupinfo_create.go index dea5696b6..1a955ac55 100644 --- a/entc/integration/ent/groupinfo_create.go +++ b/entc/integration/ent/groupinfo_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/schema/field" ) // GroupInfoCreate is the builder for creating a GroupInfo entity. diff --git a/entc/integration/ent/groupinfo_delete.go b/entc/integration/ent/groupinfo_delete.go index 3ba0be76f..ce23f7f48 100644 --- a/entc/integration/ent/groupinfo_delete.go +++ b/entc/integration/ent/groupinfo_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupInfoDelete is the builder for deleting a GroupInfo entity. diff --git a/entc/integration/ent/groupinfo_query.go b/entc/integration/ent/groupinfo_query.go index 10dae1f40..d2bdae973 100644 --- a/entc/integration/ent/groupinfo_query.go +++ b/entc/integration/ent/groupinfo_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupInfoQuery is the builder for querying GroupInfo entities. diff --git a/entc/integration/ent/groupinfo_update.go b/entc/integration/ent/groupinfo_update.go index cb0f1365f..f9a0bacec 100644 --- a/entc/integration/ent/groupinfo_update.go +++ b/entc/integration/ent/groupinfo_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupInfoUpdate is the builder for updating GroupInfo entities. diff --git a/entc/integration/ent/hook/hook.go b/entc/integration/ent/hook/hook.go index 2fc82e5a1..5e07f15b2 100644 --- a/entc/integration/ent/hook/hook.go +++ b/entc/integration/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/ent" + "entgo.io/ent/entc/integration/ent" ) // The CardFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/ent/item.go b/entc/integration/ent/item.go index 4b6745206..eacf5269c 100644 --- a/entc/integration/ent/item.go +++ b/entc/integration/ent/item.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/item" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/item" ) // Item is the model entity for the Item schema. diff --git a/entc/integration/ent/item/where.go b/entc/integration/ent/item/where.go index 5f5b7f792..67200e48d 100644 --- a/entc/integration/ent/item/where.go +++ b/entc/integration/ent/item/where.go @@ -7,8 +7,8 @@ package item import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/item_create.go b/entc/integration/ent/item_create.go index 87b8b0187..43cc8725e 100644 --- a/entc/integration/ent/item_create.go +++ b/entc/integration/ent/item_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/item" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/item" + "entgo.io/ent/schema/field" ) // ItemCreate is the builder for creating a Item entity. diff --git a/entc/integration/ent/item_delete.go b/entc/integration/ent/item_delete.go index 0cad95830..596a024ee 100644 --- a/entc/integration/ent/item_delete.go +++ b/entc/integration/ent/item_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/item" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/item" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // ItemDelete is the builder for deleting a Item entity. diff --git a/entc/integration/ent/item_query.go b/entc/integration/ent/item_query.go index 48b71337c..f8830fe4f 100644 --- a/entc/integration/ent/item_query.go +++ b/entc/integration/ent/item_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/item" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/item" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // ItemQuery is the builder for querying Item entities. diff --git a/entc/integration/ent/item_update.go b/entc/integration/ent/item_update.go index ab771bef6..90592a243 100644 --- a/entc/integration/ent/item_update.go +++ b/entc/integration/ent/item_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/item" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/item" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // ItemUpdate is the builder for updating Item entities. diff --git a/entc/integration/ent/migrate/migrate.go b/entc/integration/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/ent/migrate/migrate.go +++ b/entc/integration/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/ent/migrate/schema.go b/entc/integration/ent/migrate/schema.go index a13ae97f9..ffc4660fb 100644 --- a/entc/integration/ent/migrate/schema.go +++ b/entc/integration/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/ent/mutation.go b/entc/integration/ent/mutation.go index 1ed66bd2f..da17092d6 100644 --- a/entc/integration/ent/mutation.go +++ b/entc/integration/ent/mutation.go @@ -14,25 +14,25 @@ import ( "sync" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/comment" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/entc/integration/ent/task" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/comment" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/entc/integration/ent/task" + "entgo.io/ent/entc/integration/ent/user" "github.com/google/uuid" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/ent/node.go b/entc/integration/ent/node.go index 03357192d..d74d13886 100644 --- a/entc/integration/ent/node.go +++ b/entc/integration/ent/node.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/node" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/node" ) // Node is the model entity for the Node schema. diff --git a/entc/integration/ent/node/where.go b/entc/integration/ent/node/where.go index 209d1919a..5fa54c015 100644 --- a/entc/integration/ent/node/where.go +++ b/entc/integration/ent/node/where.go @@ -7,9 +7,9 @@ package node import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/node_create.go b/entc/integration/ent/node_create.go index 195e3ea1a..83d0b0448 100644 --- a/entc/integration/ent/node_create.go +++ b/entc/integration/ent/node_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/schema/field" ) // NodeCreate is the builder for creating a Node entity. diff --git a/entc/integration/ent/node_delete.go b/entc/integration/ent/node_delete.go index 67bcc1bdd..cf14d0880 100644 --- a/entc/integration/ent/node_delete.go +++ b/entc/integration/ent/node_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeDelete is the builder for deleting a Node entity. diff --git a/entc/integration/ent/node_query.go b/entc/integration/ent/node_query.go index 4db7f4e03..90564059c 100644 --- a/entc/integration/ent/node_query.go +++ b/entc/integration/ent/node_query.go @@ -13,11 +13,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeQuery is the builder for querying Node entities. diff --git a/entc/integration/ent/node_update.go b/entc/integration/ent/node_update.go index 672426bff..5dc67b1f0 100644 --- a/entc/integration/ent/node_update.go +++ b/entc/integration/ent/node_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeUpdate is the builder for updating Node entities. diff --git a/entc/integration/ent/pet.go b/entc/integration/ent/pet.go index 12479826c..2225dc3ba 100644 --- a/entc/integration/ent/pet.go +++ b/entc/integration/ent/pet.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/user" "github.com/google/uuid" ) diff --git a/entc/integration/ent/pet/where.go b/entc/integration/ent/pet/where.go index 5ea66d31b..65d97c39c 100644 --- a/entc/integration/ent/pet/where.go +++ b/entc/integration/ent/pet/where.go @@ -7,9 +7,9 @@ package pet import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" "github.com/google/uuid" ) diff --git a/entc/integration/ent/pet_create.go b/entc/integration/ent/pet_create.go index fea42529a..8b17cee64 100644 --- a/entc/integration/ent/pet_create.go +++ b/entc/integration/ent/pet_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/ent/pet_delete.go b/entc/integration/ent/pet_delete.go index 14ed388a4..5c5153425 100644 --- a/entc/integration/ent/pet_delete.go +++ b/entc/integration/ent/pet_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/schema/field" ) // PetDelete is the builder for deleting a Pet entity. diff --git a/entc/integration/ent/pet_query.go b/entc/integration/ent/pet_query.go index 62fbefa6f..c64cba856 100644 --- a/entc/integration/ent/pet_query.go +++ b/entc/integration/ent/pet_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // PetQuery is the builder for querying Pet entities. diff --git a/entc/integration/ent/pet_update.go b/entc/integration/ent/pet_update.go index 136eafa15..b97cdc94e 100644 --- a/entc/integration/ent/pet_update.go +++ b/entc/integration/ent/pet_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/ent/predicate/predicate.go b/entc/integration/ent/predicate/predicate.go index b32d9bb5d..73a824457 100644 --- a/entc/integration/ent/predicate/predicate.go +++ b/entc/integration/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Card is the predicate function for card builders. diff --git a/entc/integration/ent/runtime.go b/entc/integration/ent/runtime.go index 6a8ce0a6f..5fb255f04 100644 --- a/entc/integration/ent/runtime.go +++ b/entc/integration/ent/runtime.go @@ -10,15 +10,15 @@ import ( "net" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/ent/task" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/task" + "entgo.io/ent/entc/integration/ent/user" ) // The init function reads all schema descriptors with runtime code diff --git a/entc/integration/ent/runtime/runtime.go b/entc/integration/ent/runtime/runtime.go index 4a16729e1..4dd78a3b8 100644 --- a/entc/integration/ent/runtime/runtime.go +++ b/entc/integration/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/ent/schema/card.go b/entc/integration/ent/schema/card.go index 9457e7c96..59a12d0b1 100644 --- a/entc/integration/ent/schema/card.go +++ b/entc/integration/ent/schema/card.go @@ -5,13 +5,13 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/entc/integration/ent/template" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/entc/integration/ent/template" + "entgo.io/ent/schema" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" + "entgo.io/ent/schema/mixin" ) type CardMixin struct { diff --git a/entc/integration/ent/schema/comment.go b/entc/integration/ent/schema/comment.go index 3dba96e41..eb7b11378 100644 --- a/entc/integration/ent/schema/comment.go +++ b/entc/integration/ent/schema/comment.go @@ -5,8 +5,8 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // Comment holds the schema definition for the Comment entity. diff --git a/entc/integration/ent/schema/fieldtype.go b/entc/integration/ent/schema/fieldtype.go index 8f053a4d0..446d6b44e 100644 --- a/entc/integration/ent/schema/fieldtype.go +++ b/entc/integration/ent/schema/fieldtype.go @@ -12,11 +12,11 @@ import ( "net/url" "time" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/ent/schema/file.go b/entc/integration/ent/schema/file.go index d25e4077b..a57421a85 100644 --- a/entc/integration/ent/schema/file.go +++ b/entc/integration/ent/schema/file.go @@ -7,10 +7,10 @@ package schema import ( "math" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" ) // File holds the schema definition for the File entity. diff --git a/entc/integration/ent/schema/filetype.go b/entc/integration/ent/schema/filetype.go index ab344c579..0f77c0e7f 100644 --- a/entc/integration/ent/schema/filetype.go +++ b/entc/integration/ent/schema/filetype.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // FileType holds the schema definition for the FileType entity. diff --git a/entc/integration/ent/schema/goods.go b/entc/integration/ent/schema/goods.go index be5d53d89..e54c8b0bc 100644 --- a/entc/integration/ent/schema/goods.go +++ b/entc/integration/ent/schema/goods.go @@ -4,7 +4,7 @@ package schema -import "github.com/facebook/ent" +import "entgo.io/ent" // Goods holds the schema definition for the Goods entity. type Goods struct { diff --git a/entc/integration/ent/schema/group.go b/entc/integration/ent/schema/group.go index 31013a5fd..02f25b8cd 100644 --- a/entc/integration/ent/schema/group.go +++ b/entc/integration/ent/schema/group.go @@ -8,9 +8,9 @@ import ( "regexp" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // CheckError is returned by the validators. diff --git a/entc/integration/ent/schema/groupinfo.go b/entc/integration/ent/schema/groupinfo.go index ac049228c..9cd3c0922 100644 --- a/entc/integration/ent/schema/groupinfo.go +++ b/entc/integration/ent/schema/groupinfo.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // GroupInfo holds the schema for the group-info entity. diff --git a/entc/integration/ent/schema/item.go b/entc/integration/ent/schema/item.go index b704875f1..5b0540fb7 100644 --- a/entc/integration/ent/schema/item.go +++ b/entc/integration/ent/schema/item.go @@ -5,7 +5,7 @@ package schema import ( - "github.com/facebook/ent" + "entgo.io/ent" ) // Item holds the schema definition for the Item entity. diff --git a/entc/integration/ent/schema/node.go b/entc/integration/ent/schema/node.go index 1beadc6ef..45f13cda4 100644 --- a/entc/integration/ent/schema/node.go +++ b/entc/integration/ent/schema/node.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Node holds the schema definition for the linked-list Node entity. diff --git a/entc/integration/ent/schema/pet.go b/entc/integration/ent/schema/pet.go index 0aefce87a..c11b20cae 100644 --- a/entc/integration/ent/schema/pet.go +++ b/entc/integration/ent/schema/pet.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" "github.com/google/uuid" ) diff --git a/entc/integration/ent/schema/spec.go b/entc/integration/ent/schema/spec.go index 662083476..b5823b4cf 100644 --- a/entc/integration/ent/schema/spec.go +++ b/entc/integration/ent/schema/spec.go @@ -5,8 +5,8 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) type Spec struct { diff --git a/entc/integration/ent/schema/task.go b/entc/integration/ent/schema/task.go index 429d6f4c4..a3872750e 100644 --- a/entc/integration/ent/schema/task.go +++ b/entc/integration/ent/schema/task.go @@ -7,8 +7,8 @@ package schema import ( "fmt" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // Task holds the schema definition for the Task entity. diff --git a/entc/integration/ent/schema/user.go b/entc/integration/ent/schema/user.go index 95e2567a3..8a549d37a 100644 --- a/entc/integration/ent/schema/user.go +++ b/entc/integration/ent/schema/user.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/mixin" ) // User holds the schema for the user entity. diff --git a/entc/integration/ent/spec.go b/entc/integration/ent/spec.go index 4525c9ace..5c326a064 100644 --- a/entc/integration/ent/spec.go +++ b/entc/integration/ent/spec.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/spec" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/spec" ) // Spec is the model entity for the Spec schema. diff --git a/entc/integration/ent/spec/where.go b/entc/integration/ent/spec/where.go index 29364eae6..4ee3cfbcd 100644 --- a/entc/integration/ent/spec/where.go +++ b/entc/integration/ent/spec/where.go @@ -7,9 +7,9 @@ package spec import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/spec_create.go b/entc/integration/ent/spec_create.go index 0821875dc..71cdd3015 100644 --- a/entc/integration/ent/spec_create.go +++ b/entc/integration/ent/spec_create.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/schema/field" ) // SpecCreate is the builder for creating a Spec entity. diff --git a/entc/integration/ent/spec_delete.go b/entc/integration/ent/spec_delete.go index bf9aa02cb..de1d8db06 100644 --- a/entc/integration/ent/spec_delete.go +++ b/entc/integration/ent/spec_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/schema/field" ) // SpecDelete is the builder for deleting a Spec entity. diff --git a/entc/integration/ent/spec_query.go b/entc/integration/ent/spec_query.go index e2f14c5ac..a937b07ba 100644 --- a/entc/integration/ent/spec_query.go +++ b/entc/integration/ent/spec_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/schema/field" ) // SpecQuery is the builder for querying Spec entities. diff --git a/entc/integration/ent/spec_update.go b/entc/integration/ent/spec_update.go index a26fcc3f3..f90f19335 100644 --- a/entc/integration/ent/spec_update.go +++ b/entc/integration/ent/spec_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/spec" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/spec" + "entgo.io/ent/schema/field" ) // SpecUpdate is the builder for updating Spec entities. diff --git a/entc/integration/ent/task.go b/entc/integration/ent/task.go index 22a7d8864..8d262f44e 100644 --- a/entc/integration/ent/task.go +++ b/entc/integration/ent/task.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/ent/task" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/task" ) // Task is the model entity for the Task schema. diff --git a/entc/integration/ent/task/task.go b/entc/integration/ent/task/task.go index 271cd32e2..e11ca19bc 100644 --- a/entc/integration/ent/task/task.go +++ b/entc/integration/ent/task/task.go @@ -7,7 +7,7 @@ package task import ( - "github.com/facebook/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/schema" ) const ( diff --git a/entc/integration/ent/task/where.go b/entc/integration/ent/task/where.go index e012d5f29..a29599826 100644 --- a/entc/integration/ent/task/where.go +++ b/entc/integration/ent/task/where.go @@ -7,9 +7,9 @@ package task import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/schema" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/schema" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/task_create.go b/entc/integration/ent/task_create.go index 983e99781..995e3492a 100644 --- a/entc/integration/ent/task_create.go +++ b/entc/integration/ent/task_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/ent/task" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/task" + "entgo.io/ent/schema/field" ) // TaskCreate is the builder for creating a Task entity. diff --git a/entc/integration/ent/task_delete.go b/entc/integration/ent/task_delete.go index 4a30a9a29..815bd1270 100644 --- a/entc/integration/ent/task_delete.go +++ b/entc/integration/ent/task_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/task" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/task" + "entgo.io/ent/schema/field" ) // TaskDelete is the builder for deleting a Task entity. diff --git a/entc/integration/ent/task_query.go b/entc/integration/ent/task_query.go index a3bf8a753..ad77dcaf1 100644 --- a/entc/integration/ent/task_query.go +++ b/entc/integration/ent/task_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/task" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/task" + "entgo.io/ent/schema/field" ) // TaskQuery is the builder for querying Task entities. diff --git a/entc/integration/ent/task_update.go b/entc/integration/ent/task_update.go index 34d36c9f7..285bd0dd7 100644 --- a/entc/integration/ent/task_update.go +++ b/entc/integration/ent/task_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/ent/task" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/task" + "entgo.io/ent/schema/field" ) // TaskUpdate is the builder for updating Task entities. diff --git a/entc/integration/ent/template/fields.tmpl b/entc/integration/ent/template/fields.tmpl index 5223bfe9a..fd150625c 100644 --- a/entc/integration/ent/template/fields.tmpl +++ b/entc/integration/ent/template/fields.tmpl @@ -9,4 +9,4 @@ {{ define "client/fields/additional/node" }} TemplateField struct{} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/entc/integration/ent/tx.go b/entc/integration/ent/tx.go index 31d102433..7a59de7dd 100644 --- a/entc/integration/ent/tx.go +++ b/entc/integration/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/ent/user.go b/entc/integration/ent/user.go index eaafaedf0..4b5913d76 100644 --- a/entc/integration/ent/user.go +++ b/entc/integration/ent/user.go @@ -10,10 +10,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/ent/user/where.go b/entc/integration/ent/user/where.go index 7aaca16d3..a24bb2949 100644 --- a/entc/integration/ent/user/where.go +++ b/entc/integration/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/ent/user_create.go b/entc/integration/ent/user_create.go index 39c812c2f..a47987e4c 100644 --- a/entc/integration/ent/user_create.go +++ b/entc/integration/ent/user_create.go @@ -11,13 +11,13 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/ent/user_delete.go b/entc/integration/ent/user_delete.go index 3e820258e..7db268aac 100644 --- a/entc/integration/ent/user_delete.go +++ b/entc/integration/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/ent/user_query.go b/entc/integration/ent/user_query.go index c56ccdeb8..7b9bab9f9 100644 --- a/entc/integration/ent/user_query.go +++ b/entc/integration/ent/user_query.go @@ -13,15 +13,15 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/ent/user_update.go b/entc/integration/ent/user_update.go index eca313de9..ebfde8b2e 100644 --- a/entc/integration/ent/user_update.go +++ b/entc/integration/ent/user_update.go @@ -10,15 +10,15 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/predicate" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/predicate" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/entql_test.go b/entc/integration/entql_test.go index b3a6dcb86..d597ba597 100644 --- a/entc/integration/entql_test.go +++ b/entc/integration/entql_test.go @@ -10,10 +10,10 @@ import ( "github.com/google/uuid" - "github.com/facebook/ent/entc/integration/ent" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/user" - "github.com/facebook/ent/entql" + "entgo.io/ent/entc/integration/ent" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/user" + "entgo.io/ent/entql" "github.com/stretchr/testify/require" ) diff --git a/entc/integration/gremlin/ent/card.go b/entc/integration/gremlin/ent/card.go index 5612c30fa..6347a07f6 100644 --- a/entc/integration/gremlin/ent/card.go +++ b/entc/integration/gremlin/ent/card.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // Card is the model entity for the Card schema. diff --git a/entc/integration/gremlin/ent/card/where.go b/entc/integration/gremlin/ent/card/where.go index f6cd04956..b2dcd1455 100644 --- a/entc/integration/gremlin/ent/card/where.go +++ b/entc/integration/gremlin/ent/card/where.go @@ -9,10 +9,10 @@ package card import ( "time" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/card_create.go b/entc/integration/gremlin/ent/card_create.go index ad294eda7..b051d932d 100644 --- a/entc/integration/gremlin/ent/card_create.go +++ b/entc/integration/gremlin/ent/card_create.go @@ -12,14 +12,14 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // CardCreate is the builder for creating a Card entity. diff --git a/entc/integration/gremlin/ent/card_delete.go b/entc/integration/gremlin/ent/card_delete.go index 7f5724bd8..d97254a46 100644 --- a/entc/integration/gremlin/ent/card_delete.go +++ b/entc/integration/gremlin/ent/card_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // CardDelete is the builder for deleting a Card entity. diff --git a/entc/integration/gremlin/ent/card_query.go b/entc/integration/gremlin/ent/card_query.go index 80a03ec49..bbdb2ffbe 100644 --- a/entc/integration/gremlin/ent/card_query.go +++ b/entc/integration/gremlin/ent/card_query.go @@ -12,14 +12,14 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // CardQuery is the builder for querying Card entities. diff --git a/entc/integration/gremlin/ent/card_update.go b/entc/integration/gremlin/ent/card_update.go index c10e700c4..8a9f92977 100644 --- a/entc/integration/gremlin/ent/card_update.go +++ b/entc/integration/gremlin/ent/card_update.go @@ -10,15 +10,15 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // CardUpdate is the builder for updating Card entities. diff --git a/entc/integration/gremlin/ent/client.go b/entc/integration/gremlin/ent/client.go index 8d69e09f2..c8cec0604 100644 --- a/entc/integration/gremlin/ent/client.go +++ b/entc/integration/gremlin/ent/client.go @@ -12,25 +12,25 @@ import ( "log" "net/url" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/comment" - "github.com/facebook/ent/entc/integration/gremlin/ent/fieldtype" - "github.com/facebook/ent/entc/integration/gremlin/ent/file" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/goods" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" - "github.com/facebook/ent/entc/integration/gremlin/ent/item" - "github.com/facebook/ent/entc/integration/gremlin/ent/node" - "github.com/facebook/ent/entc/integration/gremlin/ent/pet" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" - "github.com/facebook/ent/entc/integration/gremlin/ent/task" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/comment" + "entgo.io/ent/entc/integration/gremlin/ent/fieldtype" + "entgo.io/ent/entc/integration/gremlin/ent/file" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/goods" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/entc/integration/gremlin/ent/item" + "entgo.io/ent/entc/integration/gremlin/ent/node" + "entgo.io/ent/entc/integration/gremlin/ent/pet" + "entgo.io/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/entc/integration/gremlin/ent/task" + "entgo.io/ent/entc/integration/gremlin/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/gremlin/ent/comment.go b/entc/integration/gremlin/ent/comment.go index 873baeb11..f1f86012d 100644 --- a/entc/integration/gremlin/ent/comment.go +++ b/entc/integration/gremlin/ent/comment.go @@ -10,7 +10,7 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" ) // Comment is the model entity for the Comment schema. diff --git a/entc/integration/gremlin/ent/comment/where.go b/entc/integration/gremlin/ent/comment/where.go index 29edee4ef..56517b034 100644 --- a/entc/integration/gremlin/ent/comment/where.go +++ b/entc/integration/gremlin/ent/comment/where.go @@ -7,10 +7,10 @@ package comment import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/comment_create.go b/entc/integration/gremlin/ent/comment_create.go index f59fac445..56df4800a 100644 --- a/entc/integration/gremlin/ent/comment_create.go +++ b/entc/integration/gremlin/ent/comment_create.go @@ -11,12 +11,12 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/comment" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/comment" ) // CommentCreate is the builder for creating a Comment entity. diff --git a/entc/integration/gremlin/ent/comment_delete.go b/entc/integration/gremlin/ent/comment_delete.go index 0fbb86192..56020971b 100644 --- a/entc/integration/gremlin/ent/comment_delete.go +++ b/entc/integration/gremlin/ent/comment_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/comment" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/comment" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // CommentDelete is the builder for deleting a Comment entity. diff --git a/entc/integration/gremlin/ent/comment_query.go b/entc/integration/gremlin/ent/comment_query.go index 750880cd5..8e521360c 100644 --- a/entc/integration/gremlin/ent/comment_query.go +++ b/entc/integration/gremlin/ent/comment_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/comment" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/comment" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // CommentQuery is the builder for querying Comment entities. diff --git a/entc/integration/gremlin/ent/comment_update.go b/entc/integration/gremlin/ent/comment_update.go index cedafe654..b822db809 100644 --- a/entc/integration/gremlin/ent/comment_update.go +++ b/entc/integration/gremlin/ent/comment_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/comment" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/comment" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // CommentUpdate is the builder for updating Comment entities. diff --git a/entc/integration/gremlin/ent/config.go b/entc/integration/gremlin/ent/config.go index c80f23ede..b47ceb000 100644 --- a/entc/integration/gremlin/ent/config.go +++ b/entc/integration/gremlin/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/gremlin/ent/ent.go b/entc/integration/gremlin/ent/ent.go index 6b82655d2..3d3592790 100644 --- a/entc/integration/gremlin/ent/ent.go +++ b/entc/integration/gremlin/ent/ent.go @@ -12,11 +12,11 @@ import ( "strconv" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/encoding/graphson" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/encoding/graphson" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/gremlin/ent/enttest/enttest.go b/entc/integration/gremlin/ent/enttest/enttest.go index 29cdc3e75..ffe1d4573 100644 --- a/entc/integration/gremlin/ent/enttest/enttest.go +++ b/entc/integration/gremlin/ent/enttest/enttest.go @@ -7,9 +7,9 @@ package enttest import ( - "github.com/facebook/ent/entc/integration/gremlin/ent" + "entgo.io/ent/entc/integration/gremlin/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/gremlin/ent/runtime" + _ "entgo.io/ent/entc/integration/gremlin/ent/runtime" ) type ( diff --git a/entc/integration/gremlin/ent/fieldtype.go b/entc/integration/gremlin/ent/fieldtype.go index 7188a128a..6df08c422 100644 --- a/entc/integration/gremlin/ent/fieldtype.go +++ b/entc/integration/gremlin/ent/fieldtype.go @@ -14,10 +14,10 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/fieldtype" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/fieldtype" "github.com/google/uuid" ) diff --git a/entc/integration/gremlin/ent/fieldtype/fieldtype.go b/entc/integration/gremlin/ent/fieldtype/fieldtype.go index f5c192b6e..a9af0e5dc 100644 --- a/entc/integration/gremlin/ent/fieldtype/fieldtype.go +++ b/entc/integration/gremlin/ent/fieldtype/fieldtype.go @@ -11,7 +11,7 @@ import ( "fmt" "net" - "github.com/facebook/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/role" ) const ( diff --git a/entc/integration/gremlin/ent/fieldtype/where.go b/entc/integration/gremlin/ent/fieldtype/where.go index 7eff37ea2..562ae3643 100644 --- a/entc/integration/gremlin/ent/fieldtype/where.go +++ b/entc/integration/gremlin/ent/fieldtype/where.go @@ -12,12 +12,12 @@ import ( "net/http" "time" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" "github.com/google/uuid" ) diff --git a/entc/integration/gremlin/ent/fieldtype_create.go b/entc/integration/gremlin/ent/fieldtype_create.go index 1d42b2764..975b3989b 100644 --- a/entc/integration/gremlin/ent/fieldtype_create.go +++ b/entc/integration/gremlin/ent/fieldtype_create.go @@ -15,12 +15,12 @@ import ( "net/http" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/fieldtype" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/fieldtype" "github.com/google/uuid" ) diff --git a/entc/integration/gremlin/ent/fieldtype_delete.go b/entc/integration/gremlin/ent/fieldtype_delete.go index 60cb92957..873167253 100644 --- a/entc/integration/gremlin/ent/fieldtype_delete.go +++ b/entc/integration/gremlin/ent/fieldtype_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/fieldtype" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/fieldtype" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // FieldTypeDelete is the builder for deleting a FieldType entity. diff --git a/entc/integration/gremlin/ent/fieldtype_query.go b/entc/integration/gremlin/ent/fieldtype_query.go index c050d55e9..b9235a6f1 100644 --- a/entc/integration/gremlin/ent/fieldtype_query.go +++ b/entc/integration/gremlin/ent/fieldtype_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/fieldtype" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/fieldtype" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // FieldTypeQuery is the builder for querying FieldType entities. diff --git a/entc/integration/gremlin/ent/fieldtype_update.go b/entc/integration/gremlin/ent/fieldtype_update.go index ecea37276..88f137b98 100644 --- a/entc/integration/gremlin/ent/fieldtype_update.go +++ b/entc/integration/gremlin/ent/fieldtype_update.go @@ -14,14 +14,14 @@ import ( "net/http" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/fieldtype" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/fieldtype" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" "github.com/google/uuid" ) diff --git a/entc/integration/gremlin/ent/file.go b/entc/integration/gremlin/ent/file.go index 2d085711a..404a60921 100644 --- a/entc/integration/gremlin/ent/file.go +++ b/entc/integration/gremlin/ent/file.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // File is the model entity for the File schema. diff --git a/entc/integration/gremlin/ent/file/where.go b/entc/integration/gremlin/ent/file/where.go index 08acbc1c8..1c4224daa 100644 --- a/entc/integration/gremlin/ent/file/where.go +++ b/entc/integration/gremlin/ent/file/where.go @@ -7,10 +7,10 @@ package file import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/file_create.go b/entc/integration/gremlin/ent/file_create.go index 5a9493849..91ef48fea 100644 --- a/entc/integration/gremlin/ent/file_create.go +++ b/entc/integration/gremlin/ent/file_create.go @@ -11,14 +11,14 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/file" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/file" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // FileCreate is the builder for creating a File entity. diff --git a/entc/integration/gremlin/ent/file_delete.go b/entc/integration/gremlin/ent/file_delete.go index 2b1fcc957..545417839 100644 --- a/entc/integration/gremlin/ent/file_delete.go +++ b/entc/integration/gremlin/ent/file_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/file" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/file" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // FileDelete is the builder for deleting a File entity. diff --git a/entc/integration/gremlin/ent/file_query.go b/entc/integration/gremlin/ent/file_query.go index bc47a66e0..d13c7414d 100644 --- a/entc/integration/gremlin/ent/file_query.go +++ b/entc/integration/gremlin/ent/file_query.go @@ -12,14 +12,14 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/file" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/file" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // FileQuery is the builder for querying File entities. diff --git a/entc/integration/gremlin/ent/file_update.go b/entc/integration/gremlin/ent/file_update.go index 814b5af7d..c76ccd80f 100644 --- a/entc/integration/gremlin/ent/file_update.go +++ b/entc/integration/gremlin/ent/file_update.go @@ -10,15 +10,15 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/file" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/file" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // FileUpdate is the builder for updating File entities. diff --git a/entc/integration/gremlin/ent/filetype.go b/entc/integration/gremlin/ent/filetype.go index 39c88954a..198eb96af 100644 --- a/entc/integration/gremlin/ent/filetype.go +++ b/entc/integration/gremlin/ent/filetype.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" ) // FileType is the model entity for the FileType schema. diff --git a/entc/integration/gremlin/ent/filetype/where.go b/entc/integration/gremlin/ent/filetype/where.go index f2bf9ceb9..e96912918 100644 --- a/entc/integration/gremlin/ent/filetype/where.go +++ b/entc/integration/gremlin/ent/filetype/where.go @@ -7,10 +7,10 @@ package filetype import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/filetype_create.go b/entc/integration/gremlin/ent/filetype_create.go index 43efd7f5b..a2cefc869 100644 --- a/entc/integration/gremlin/ent/filetype_create.go +++ b/entc/integration/gremlin/ent/filetype_create.go @@ -11,12 +11,12 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" ) // FileTypeCreate is the builder for creating a FileType entity. diff --git a/entc/integration/gremlin/ent/filetype_delete.go b/entc/integration/gremlin/ent/filetype_delete.go index 590766d9e..a6fe1b434 100644 --- a/entc/integration/gremlin/ent/filetype_delete.go +++ b/entc/integration/gremlin/ent/filetype_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // FileTypeDelete is the builder for deleting a FileType entity. diff --git a/entc/integration/gremlin/ent/filetype_query.go b/entc/integration/gremlin/ent/filetype_query.go index cd4c68e1b..a69beaed9 100644 --- a/entc/integration/gremlin/ent/filetype_query.go +++ b/entc/integration/gremlin/ent/filetype_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // FileTypeQuery is the builder for querying FileType entities. diff --git a/entc/integration/gremlin/ent/filetype_update.go b/entc/integration/gremlin/ent/filetype_update.go index 73b22001e..42b827015 100644 --- a/entc/integration/gremlin/ent/filetype_update.go +++ b/entc/integration/gremlin/ent/filetype_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // FileTypeUpdate is the builder for updating FileType entities. diff --git a/entc/integration/gremlin/ent/generate.go b/entc/integration/gremlin/ent/generate.go index f948e1e58..0ac833d5e 100644 --- a/entc/integration/gremlin/ent/generate.go +++ b/entc/integration/gremlin/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --target . --storage=gremlin --idtype string --template ../../ent/template --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ../../ent/schema +//go:generate go run entgo.io/ent/cmd/ent generate --target . --storage=gremlin --idtype string --template ../../ent/template --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ../../ent/schema diff --git a/entc/integration/gremlin/ent/goods.go b/entc/integration/gremlin/ent/goods.go index 6bdbb755e..39f31be84 100644 --- a/entc/integration/gremlin/ent/goods.go +++ b/entc/integration/gremlin/ent/goods.go @@ -10,7 +10,7 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" ) // Goods is the model entity for the Goods schema. diff --git a/entc/integration/gremlin/ent/goods/where.go b/entc/integration/gremlin/ent/goods/where.go index f2bb05804..60e650b9b 100644 --- a/entc/integration/gremlin/ent/goods/where.go +++ b/entc/integration/gremlin/ent/goods/where.go @@ -7,10 +7,10 @@ package goods import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/goods_create.go b/entc/integration/gremlin/ent/goods_create.go index e77e14c1a..192c5e29d 100644 --- a/entc/integration/gremlin/ent/goods_create.go +++ b/entc/integration/gremlin/ent/goods_create.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/goods" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/goods" ) // GoodsCreate is the builder for creating a Goods entity. diff --git a/entc/integration/gremlin/ent/goods_delete.go b/entc/integration/gremlin/ent/goods_delete.go index d1c4b8c8c..9fcaf0bbc 100644 --- a/entc/integration/gremlin/ent/goods_delete.go +++ b/entc/integration/gremlin/ent/goods_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/goods" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/goods" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // GoodsDelete is the builder for deleting a Goods entity. diff --git a/entc/integration/gremlin/ent/goods_query.go b/entc/integration/gremlin/ent/goods_query.go index 324248b29..72e0ce484 100644 --- a/entc/integration/gremlin/ent/goods_query.go +++ b/entc/integration/gremlin/ent/goods_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/goods" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/goods" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // GoodsQuery is the builder for querying Goods entities. diff --git a/entc/integration/gremlin/ent/goods_update.go b/entc/integration/gremlin/ent/goods_update.go index d090690c5..3b2a9dab3 100644 --- a/entc/integration/gremlin/ent/goods_update.go +++ b/entc/integration/gremlin/ent/goods_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/goods" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/goods" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // GoodsUpdate is the builder for updating Goods entities. diff --git a/entc/integration/gremlin/ent/group.go b/entc/integration/gremlin/ent/group.go index 1b9056274..a03799c34 100644 --- a/entc/integration/gremlin/ent/group.go +++ b/entc/integration/gremlin/ent/group.go @@ -11,8 +11,8 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" ) // Group is the model entity for the Group schema. diff --git a/entc/integration/gremlin/ent/group/where.go b/entc/integration/gremlin/ent/group/where.go index c078796f3..fb29a1969 100644 --- a/entc/integration/gremlin/ent/group/where.go +++ b/entc/integration/gremlin/ent/group/where.go @@ -9,10 +9,10 @@ package group import ( "time" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/group_create.go b/entc/integration/gremlin/ent/group_create.go index 0a51d1e92..182fb8573 100644 --- a/entc/integration/gremlin/ent/group_create.go +++ b/entc/integration/gremlin/ent/group_create.go @@ -12,13 +12,13 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // GroupCreate is the builder for creating a Group entity. diff --git a/entc/integration/gremlin/ent/group_delete.go b/entc/integration/gremlin/ent/group_delete.go index 22b4adb38..fb48f3aca 100644 --- a/entc/integration/gremlin/ent/group_delete.go +++ b/entc/integration/gremlin/ent/group_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/entc/integration/gremlin/ent/group_query.go b/entc/integration/gremlin/ent/group_query.go index 5ca28e3a9..c83081fd6 100644 --- a/entc/integration/gremlin/ent/group_query.go +++ b/entc/integration/gremlin/ent/group_query.go @@ -12,13 +12,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // GroupQuery is the builder for querying Group entities. diff --git a/entc/integration/gremlin/ent/group_update.go b/entc/integration/gremlin/ent/group_update.go index 00ccd3e05..a1baaf04c 100644 --- a/entc/integration/gremlin/ent/group_update.go +++ b/entc/integration/gremlin/ent/group_update.go @@ -12,14 +12,14 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // GroupUpdate is the builder for updating Group entities. diff --git a/entc/integration/gremlin/ent/groupinfo.go b/entc/integration/gremlin/ent/groupinfo.go index 678c5b8fd..e4d825682 100644 --- a/entc/integration/gremlin/ent/groupinfo.go +++ b/entc/integration/gremlin/ent/groupinfo.go @@ -10,7 +10,7 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" ) // GroupInfo is the model entity for the GroupInfo schema. diff --git a/entc/integration/gremlin/ent/groupinfo/where.go b/entc/integration/gremlin/ent/groupinfo/where.go index 3b575adcc..7ec069f80 100644 --- a/entc/integration/gremlin/ent/groupinfo/where.go +++ b/entc/integration/gremlin/ent/groupinfo/where.go @@ -7,10 +7,10 @@ package groupinfo import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/groupinfo_create.go b/entc/integration/gremlin/ent/groupinfo_create.go index af8800bf7..8c7381a00 100644 --- a/entc/integration/gremlin/ent/groupinfo_create.go +++ b/entc/integration/gremlin/ent/groupinfo_create.go @@ -11,13 +11,13 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" ) // GroupInfoCreate is the builder for creating a GroupInfo entity. diff --git a/entc/integration/gremlin/ent/groupinfo_delete.go b/entc/integration/gremlin/ent/groupinfo_delete.go index 88278b6ef..969e741bf 100644 --- a/entc/integration/gremlin/ent/groupinfo_delete.go +++ b/entc/integration/gremlin/ent/groupinfo_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // GroupInfoDelete is the builder for deleting a GroupInfo entity. diff --git a/entc/integration/gremlin/ent/groupinfo_query.go b/entc/integration/gremlin/ent/groupinfo_query.go index 4b02530b8..ee38f2082 100644 --- a/entc/integration/gremlin/ent/groupinfo_query.go +++ b/entc/integration/gremlin/ent/groupinfo_query.go @@ -12,13 +12,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // GroupInfoQuery is the builder for querying GroupInfo entities. diff --git a/entc/integration/gremlin/ent/groupinfo_update.go b/entc/integration/gremlin/ent/groupinfo_update.go index 26f532bd4..2bd4d5296 100644 --- a/entc/integration/gremlin/ent/groupinfo_update.go +++ b/entc/integration/gremlin/ent/groupinfo_update.go @@ -10,14 +10,14 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // GroupInfoUpdate is the builder for updating GroupInfo entities. diff --git a/entc/integration/gremlin/ent/hook/hook.go b/entc/integration/gremlin/ent/hook/hook.go index 46fb52bf4..289494c18 100644 --- a/entc/integration/gremlin/ent/hook/hook.go +++ b/entc/integration/gremlin/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/gremlin/ent" + "entgo.io/ent/entc/integration/gremlin/ent" ) // The CardFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/gremlin/ent/item.go b/entc/integration/gremlin/ent/item.go index d94be2ce4..ea6bcbf3f 100644 --- a/entc/integration/gremlin/ent/item.go +++ b/entc/integration/gremlin/ent/item.go @@ -10,7 +10,7 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" ) // Item is the model entity for the Item schema. diff --git a/entc/integration/gremlin/ent/item/where.go b/entc/integration/gremlin/ent/item/where.go index cfdca51b1..e0e7dd81c 100644 --- a/entc/integration/gremlin/ent/item/where.go +++ b/entc/integration/gremlin/ent/item/where.go @@ -7,10 +7,10 @@ package item import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/item_create.go b/entc/integration/gremlin/ent/item_create.go index df7c4a5c2..5ae328891 100644 --- a/entc/integration/gremlin/ent/item_create.go +++ b/entc/integration/gremlin/ent/item_create.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/item" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/item" ) // ItemCreate is the builder for creating a Item entity. diff --git a/entc/integration/gremlin/ent/item_delete.go b/entc/integration/gremlin/ent/item_delete.go index dc624a041..f37f5f06a 100644 --- a/entc/integration/gremlin/ent/item_delete.go +++ b/entc/integration/gremlin/ent/item_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/item" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/item" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ItemDelete is the builder for deleting a Item entity. diff --git a/entc/integration/gremlin/ent/item_query.go b/entc/integration/gremlin/ent/item_query.go index 93ff4fc7f..5110712a2 100644 --- a/entc/integration/gremlin/ent/item_query.go +++ b/entc/integration/gremlin/ent/item_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/item" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/item" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ItemQuery is the builder for querying Item entities. diff --git a/entc/integration/gremlin/ent/item_update.go b/entc/integration/gremlin/ent/item_update.go index 772422d2e..2a00de08b 100644 --- a/entc/integration/gremlin/ent/item_update.go +++ b/entc/integration/gremlin/ent/item_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/item" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/item" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ItemUpdate is the builder for updating Item entities. diff --git a/entc/integration/gremlin/ent/mutation.go b/entc/integration/gremlin/ent/mutation.go index 13d592eeb..6f28472c1 100644 --- a/entc/integration/gremlin/ent/mutation.go +++ b/entc/integration/gremlin/ent/mutation.go @@ -15,24 +15,24 @@ import ( "sync" "time" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/comment" - "github.com/facebook/ent/entc/integration/gremlin/ent/fieldtype" - "github.com/facebook/ent/entc/integration/gremlin/ent/file" - "github.com/facebook/ent/entc/integration/gremlin/ent/filetype" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" - "github.com/facebook/ent/entc/integration/gremlin/ent/node" - "github.com/facebook/ent/entc/integration/gremlin/ent/pet" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" - "github.com/facebook/ent/entc/integration/gremlin/ent/task" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/comment" + "entgo.io/ent/entc/integration/gremlin/ent/fieldtype" + "entgo.io/ent/entc/integration/gremlin/ent/file" + "entgo.io/ent/entc/integration/gremlin/ent/filetype" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/entc/integration/gremlin/ent/node" + "entgo.io/ent/entc/integration/gremlin/ent/pet" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/entc/integration/gremlin/ent/task" + "entgo.io/ent/entc/integration/gremlin/ent/user" "github.com/google/uuid" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/gremlin/ent/node.go b/entc/integration/gremlin/ent/node.go index f2b6d7bc7..c71c53a5f 100644 --- a/entc/integration/gremlin/ent/node.go +++ b/entc/integration/gremlin/ent/node.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/gremlin/ent/node" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/gremlin/ent/node" ) // Node is the model entity for the Node schema. diff --git a/entc/integration/gremlin/ent/node/where.go b/entc/integration/gremlin/ent/node/where.go index edc7051e6..bd142fcef 100644 --- a/entc/integration/gremlin/ent/node/where.go +++ b/entc/integration/gremlin/ent/node/where.go @@ -7,10 +7,10 @@ package node import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/node_create.go b/entc/integration/gremlin/ent/node_create.go index d633376ad..9a31f4c7e 100644 --- a/entc/integration/gremlin/ent/node_create.go +++ b/entc/integration/gremlin/ent/node_create.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/node" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/node" ) // NodeCreate is the builder for creating a Node entity. diff --git a/entc/integration/gremlin/ent/node_delete.go b/entc/integration/gremlin/ent/node_delete.go index 97a441604..cce379634 100644 --- a/entc/integration/gremlin/ent/node_delete.go +++ b/entc/integration/gremlin/ent/node_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/node" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/node" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // NodeDelete is the builder for deleting a Node entity. diff --git a/entc/integration/gremlin/ent/node_query.go b/entc/integration/gremlin/ent/node_query.go index 73d18caed..6602d5d5c 100644 --- a/entc/integration/gremlin/ent/node_query.go +++ b/entc/integration/gremlin/ent/node_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/node" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/node" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // NodeQuery is the builder for querying Node entities. diff --git a/entc/integration/gremlin/ent/node_update.go b/entc/integration/gremlin/ent/node_update.go index e362ade23..e28edf280 100644 --- a/entc/integration/gremlin/ent/node_update.go +++ b/entc/integration/gremlin/ent/node_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/node" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/node" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // NodeUpdate is the builder for updating Node entities. diff --git a/entc/integration/gremlin/ent/pet.go b/entc/integration/gremlin/ent/pet.go index c07088092..f787663d4 100644 --- a/entc/integration/gremlin/ent/pet.go +++ b/entc/integration/gremlin/ent/pet.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/gremlin/ent/user" "github.com/google/uuid" ) diff --git a/entc/integration/gremlin/ent/pet/where.go b/entc/integration/gremlin/ent/pet/where.go index a437c6fa6..be79ffe40 100644 --- a/entc/integration/gremlin/ent/pet/where.go +++ b/entc/integration/gremlin/ent/pet/where.go @@ -7,10 +7,10 @@ package pet import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" "github.com/google/uuid" ) diff --git a/entc/integration/gremlin/ent/pet_create.go b/entc/integration/gremlin/ent/pet_create.go index 76cbb1347..70ae4cf0b 100644 --- a/entc/integration/gremlin/ent/pet_create.go +++ b/entc/integration/gremlin/ent/pet_create.go @@ -11,13 +11,13 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/pet" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/pet" + "entgo.io/ent/entc/integration/gremlin/ent/user" "github.com/google/uuid" ) diff --git a/entc/integration/gremlin/ent/pet_delete.go b/entc/integration/gremlin/ent/pet_delete.go index 537856429..09717a234 100644 --- a/entc/integration/gremlin/ent/pet_delete.go +++ b/entc/integration/gremlin/ent/pet_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/pet" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/pet" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // PetDelete is the builder for deleting a Pet entity. diff --git a/entc/integration/gremlin/ent/pet_query.go b/entc/integration/gremlin/ent/pet_query.go index e060a8c3b..b57fd57d3 100644 --- a/entc/integration/gremlin/ent/pet_query.go +++ b/entc/integration/gremlin/ent/pet_query.go @@ -12,13 +12,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/pet" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/pet" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // PetQuery is the builder for querying Pet entities. diff --git a/entc/integration/gremlin/ent/pet_update.go b/entc/integration/gremlin/ent/pet_update.go index a7a5cb23f..9cc96b5e0 100644 --- a/entc/integration/gremlin/ent/pet_update.go +++ b/entc/integration/gremlin/ent/pet_update.go @@ -10,14 +10,14 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/pet" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/pet" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" "github.com/google/uuid" ) diff --git a/entc/integration/gremlin/ent/predicate/predicate.go b/entc/integration/gremlin/ent/predicate/predicate.go index 5064f981d..ab08f4f79 100644 --- a/entc/integration/gremlin/ent/predicate/predicate.go +++ b/entc/integration/gremlin/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl" ) // Card is the predicate function for card builders. diff --git a/entc/integration/gremlin/ent/runtime.go b/entc/integration/gremlin/ent/runtime.go index d6fd0260f..3c74e621a 100644 --- a/entc/integration/gremlin/ent/runtime.go +++ b/entc/integration/gremlin/ent/runtime.go @@ -11,14 +11,14 @@ import ( "net" "time" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/fieldtype" - "github.com/facebook/ent/entc/integration/gremlin/ent/file" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" - "github.com/facebook/ent/entc/integration/gremlin/ent/task" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/fieldtype" + "entgo.io/ent/entc/integration/gremlin/ent/file" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/entc/integration/gremlin/ent/task" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // The init function reads all schema descriptors with runtime code diff --git a/entc/integration/gremlin/ent/runtime/runtime.go b/entc/integration/gremlin/ent/runtime/runtime.go index 2246e3e42..247bc651c 100644 --- a/entc/integration/gremlin/ent/runtime/runtime.go +++ b/entc/integration/gremlin/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/gremlin/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/gremlin/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/gremlin/ent/spec.go b/entc/integration/gremlin/ent/spec.go index c253b1a8c..4c4647bd2 100644 --- a/entc/integration/gremlin/ent/spec.go +++ b/entc/integration/gremlin/ent/spec.go @@ -10,7 +10,7 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin" ) // Spec is the model entity for the Spec schema. diff --git a/entc/integration/gremlin/ent/spec/where.go b/entc/integration/gremlin/ent/spec/where.go index 3c7d51a77..395320426 100644 --- a/entc/integration/gremlin/ent/spec/where.go +++ b/entc/integration/gremlin/ent/spec/where.go @@ -7,10 +7,10 @@ package spec import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/spec_create.go b/entc/integration/gremlin/ent/spec_create.go index 847c518fd..9d8e17378 100644 --- a/entc/integration/gremlin/ent/spec_create.go +++ b/entc/integration/gremlin/ent/spec_create.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/spec" ) // SpecCreate is the builder for creating a Spec entity. diff --git a/entc/integration/gremlin/ent/spec_delete.go b/entc/integration/gremlin/ent/spec_delete.go index acc3d17f9..fe9c1b426 100644 --- a/entc/integration/gremlin/ent/spec_delete.go +++ b/entc/integration/gremlin/ent/spec_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/spec" ) // SpecDelete is the builder for deleting a Spec entity. diff --git a/entc/integration/gremlin/ent/spec_query.go b/entc/integration/gremlin/ent/spec_query.go index 76c179a0b..878439c8e 100644 --- a/entc/integration/gremlin/ent/spec_query.go +++ b/entc/integration/gremlin/ent/spec_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/spec" ) // SpecQuery is the builder for querying Spec entities. diff --git a/entc/integration/gremlin/ent/spec_update.go b/entc/integration/gremlin/ent/spec_update.go index 38daf1a41..b02d0bfe9 100644 --- a/entc/integration/gremlin/ent/spec_update.go +++ b/entc/integration/gremlin/ent/spec_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/spec" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/spec" ) // SpecUpdate is the builder for updating Spec entities. diff --git a/entc/integration/gremlin/ent/task.go b/entc/integration/gremlin/ent/task.go index 4b8d096c0..144e589b9 100644 --- a/entc/integration/gremlin/ent/task.go +++ b/entc/integration/gremlin/ent/task.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/ent/schema" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/ent/schema" ) // Task is the model entity for the Task schema. diff --git a/entc/integration/gremlin/ent/task/task.go b/entc/integration/gremlin/ent/task/task.go index e7dc01203..f1944064b 100644 --- a/entc/integration/gremlin/ent/task/task.go +++ b/entc/integration/gremlin/ent/task/task.go @@ -7,7 +7,7 @@ package task import ( - "github.com/facebook/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/schema" ) const ( diff --git a/entc/integration/gremlin/ent/task/where.go b/entc/integration/gremlin/ent/task/where.go index b42e58b73..10c8add0e 100644 --- a/entc/integration/gremlin/ent/task/where.go +++ b/entc/integration/gremlin/ent/task/where.go @@ -7,11 +7,11 @@ package task import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/task_create.go b/entc/integration/gremlin/ent/task_create.go index f2fdecd8d..1c3cc14f4 100644 --- a/entc/integration/gremlin/ent/task_create.go +++ b/entc/integration/gremlin/ent/task_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/task" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/task" ) // TaskCreate is the builder for creating a Task entity. diff --git a/entc/integration/gremlin/ent/task_delete.go b/entc/integration/gremlin/ent/task_delete.go index 442fd8469..b5f1e8ec0 100644 --- a/entc/integration/gremlin/ent/task_delete.go +++ b/entc/integration/gremlin/ent/task_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/task" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/task" ) // TaskDelete is the builder for deleting a Task entity. diff --git a/entc/integration/gremlin/ent/task_query.go b/entc/integration/gremlin/ent/task_query.go index 16244e343..0642c8a9e 100644 --- a/entc/integration/gremlin/ent/task_query.go +++ b/entc/integration/gremlin/ent/task_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/task" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/task" ) // TaskQuery is the builder for querying Task entities. diff --git a/entc/integration/gremlin/ent/task_update.go b/entc/integration/gremlin/ent/task_update.go index 837a82094..d3c5fdd79 100644 --- a/entc/integration/gremlin/ent/task_update.go +++ b/entc/integration/gremlin/ent/task_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/task" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/task" ) // TaskUpdate is the builder for updating Task entities. diff --git a/entc/integration/gremlin/ent/tx.go b/entc/integration/gremlin/ent/tx.go index 31d102433..7a59de7dd 100644 --- a/entc/integration/gremlin/ent/tx.go +++ b/entc/integration/gremlin/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/gremlin/ent/user.go b/entc/integration/gremlin/ent/user.go index 753b8f246..1d0266abb 100644 --- a/entc/integration/gremlin/ent/user.go +++ b/entc/integration/gremlin/ent/user.go @@ -10,10 +10,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/pet" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/pet" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/gremlin/ent/user/where.go b/entc/integration/gremlin/ent/user/where.go index 81083ad82..fe75d6288 100644 --- a/entc/integration/gremlin/ent/user/where.go +++ b/entc/integration/gremlin/ent/user/where.go @@ -7,10 +7,10 @@ package user import ( - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/gremlin/ent/user_create.go b/entc/integration/gremlin/ent/user_create.go index fc49fc051..d7faaa2f2 100644 --- a/entc/integration/gremlin/ent/user_create.go +++ b/entc/integration/gremlin/ent/user_create.go @@ -11,12 +11,12 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/gremlin/ent/user_delete.go b/entc/integration/gremlin/ent/user_delete.go index 37824d63b..c17df41c1 100644 --- a/entc/integration/gremlin/ent/user_delete.go +++ b/entc/integration/gremlin/ent/user_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/gremlin/ent/user_query.go b/entc/integration/gremlin/ent/user_query.go index d662e5713..5e36a3d7e 100644 --- a/entc/integration/gremlin/ent/user_query.go +++ b/entc/integration/gremlin/ent/user_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/gremlin/ent/user_update.go b/entc/integration/gremlin/ent/user_update.go index 53c307c2c..8a8d7f0c8 100644 --- a/entc/integration/gremlin/ent/user_update.go +++ b/entc/integration/gremlin/ent/user_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/gremlin" - "github.com/facebook/ent/dialect/gremlin/graph/dsl" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/__" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/g" - "github.com/facebook/ent/dialect/gremlin/graph/dsl/p" - "github.com/facebook/ent/entc/integration/gremlin/ent/predicate" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/dialect/gremlin" + "entgo.io/ent/dialect/gremlin/graph/dsl" + "entgo.io/ent/dialect/gremlin/graph/dsl/__" + "entgo.io/ent/dialect/gremlin/graph/dsl/g" + "entgo.io/ent/dialect/gremlin/graph/dsl/p" + "entgo.io/ent/entc/integration/gremlin/ent/predicate" + "entgo.io/ent/entc/integration/gremlin/ent/user" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/gremlin/gremlin_test.go b/entc/integration/gremlin/gremlin_test.go index f6f1ed220..34b7f90f0 100644 --- a/entc/integration/gremlin/gremlin_test.go +++ b/entc/integration/gremlin/gremlin_test.go @@ -16,14 +16,14 @@ import ( "testing" "time" - "github.com/facebook/ent/entc/integration/gremlin/ent" - "github.com/facebook/ent/entc/integration/gremlin/ent/card" - "github.com/facebook/ent/entc/integration/gremlin/ent/file" - "github.com/facebook/ent/entc/integration/gremlin/ent/group" - "github.com/facebook/ent/entc/integration/gremlin/ent/groupinfo" - "github.com/facebook/ent/entc/integration/gremlin/ent/node" - "github.com/facebook/ent/entc/integration/gremlin/ent/pet" - "github.com/facebook/ent/entc/integration/gremlin/ent/user" + "entgo.io/ent/entc/integration/gremlin/ent" + "entgo.io/ent/entc/integration/gremlin/ent/card" + "entgo.io/ent/entc/integration/gremlin/ent/file" + "entgo.io/ent/entc/integration/gremlin/ent/group" + "entgo.io/ent/entc/integration/gremlin/ent/groupinfo" + "entgo.io/ent/entc/integration/gremlin/ent/node" + "entgo.io/ent/entc/integration/gremlin/ent/pet" + "entgo.io/ent/entc/integration/gremlin/ent/user" "github.com/stretchr/testify/require" ) diff --git a/entc/integration/hooks/ent/card.go b/entc/integration/hooks/ent/card.go index 77b32fada..ae08f956b 100644 --- a/entc/integration/hooks/ent/card.go +++ b/entc/integration/hooks/ent/card.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/user" ) // Card is the model entity for the Card schema. diff --git a/entc/integration/hooks/ent/card/card.go b/entc/integration/hooks/ent/card/card.go index 93afcc85c..3e9e31da6 100644 --- a/entc/integration/hooks/ent/card/card.go +++ b/entc/integration/hooks/ent/card/card.go @@ -9,7 +9,7 @@ package card import ( "time" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -73,7 +73,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/entc/integration/hooks/ent/runtime" +// import _ "entgo.io/ent/entc/integration/hooks/ent/runtime" // var ( Hooks [3]ent.Hook diff --git a/entc/integration/hooks/ent/card/where.go b/entc/integration/hooks/ent/card/where.go index dcc72b4a5..3a71226ae 100644 --- a/entc/integration/hooks/ent/card/where.go +++ b/entc/integration/hooks/ent/card/where.go @@ -9,9 +9,9 @@ package card import ( "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/hooks/ent/card_create.go b/entc/integration/hooks/ent/card_create.go index eaf576a62..e509b1526 100644 --- a/entc/integration/hooks/ent/card_create.go +++ b/entc/integration/hooks/ent/card_create.go @@ -12,10 +12,10 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/schema/field" ) // CardCreate is the builder for creating a Card entity. diff --git a/entc/integration/hooks/ent/card_delete.go b/entc/integration/hooks/ent/card_delete.go index e0af07b2d..24fef7af6 100644 --- a/entc/integration/hooks/ent/card_delete.go +++ b/entc/integration/hooks/ent/card_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/schema/field" ) // CardDelete is the builder for deleting a Card entity. diff --git a/entc/integration/hooks/ent/card_query.go b/entc/integration/hooks/ent/card_query.go index 88a8857f4..ee3ae59c2 100644 --- a/entc/integration/hooks/ent/card_query.go +++ b/entc/integration/hooks/ent/card_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" - "github.com/facebook/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/schema/field" ) // CardQuery is the builder for querying Card entities. diff --git a/entc/integration/hooks/ent/card_update.go b/entc/integration/hooks/ent/card_update.go index 38e728d33..0ed2ec91c 100644 --- a/entc/integration/hooks/ent/card_update.go +++ b/entc/integration/hooks/ent/card_update.go @@ -11,12 +11,12 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" - "github.com/facebook/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/schema/field" ) // CardUpdate is the builder for updating Card entities. diff --git a/entc/integration/hooks/ent/client.go b/entc/integration/hooks/ent/client.go index e0fae3169..f6e1e5582 100644 --- a/entc/integration/hooks/ent/client.go +++ b/entc/integration/hooks/ent/client.go @@ -11,14 +11,14 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/hooks/ent/migrate" + "entgo.io/ent/entc/integration/hooks/ent/migrate" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/hooks/ent/config.go b/entc/integration/hooks/ent/config.go index d13bbb793..8528e3819 100644 --- a/entc/integration/hooks/ent/config.go +++ b/entc/integration/hooks/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/hooks/ent/ent.go b/entc/integration/hooks/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/hooks/ent/ent.go +++ b/entc/integration/hooks/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/hooks/ent/enttest/enttest.go b/entc/integration/hooks/ent/enttest/enttest.go index e39fd022d..7f4d4cd72 100644 --- a/entc/integration/hooks/ent/enttest/enttest.go +++ b/entc/integration/hooks/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/hooks/ent" + "entgo.io/ent/entc/integration/hooks/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/hooks/ent/runtime" + _ "entgo.io/ent/entc/integration/hooks/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/hooks/ent/generate.go b/entc/integration/hooks/ent/generate.go index 68fbd6ac9..79779ad93 100644 --- a/entc/integration/hooks/ent/generate.go +++ b/entc/integration/hooks/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --feature schema/snapshot --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --feature schema/snapshot --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/hooks/ent/hook/hook.go b/entc/integration/hooks/ent/hook/hook.go index 5e2e3fadc..b64604276 100644 --- a/entc/integration/hooks/ent/hook/hook.go +++ b/entc/integration/hooks/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/hooks/ent" + "entgo.io/ent/entc/integration/hooks/ent" ) // The CardFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/hooks/ent/internal/schema.go b/entc/integration/hooks/ent/internal/schema.go index ac763d403..b7834cdd4 100644 --- a/entc/integration/hooks/ent/internal/schema.go +++ b/entc/integration/hooks/ent/internal/schema.go @@ -9,4 +9,4 @@ // Package internal holds a loadable version of the latest schema. package internal -const Schema = `{"Schema":"github.com/facebook/ent/entc/integration/hooks/ent/schema","Package":"github.com/facebook/ent/entc/integration/hooks/ent","Schemas":[{"name":"Card","config":{"Table":""},"edges":[{"name":"owner","type":"User","ref_name":"cards","unique":true,"inverse":true}],"fields":[{"name":"number","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":"unknown","default_kind":24,"immutable":true,"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0},"comment":"Exact name written on card"},{"name":"created_at","type":{"Type":2,"Ident":"","PkgPath":"time","Nillable":false,"RType":null},"default":true,"default_kind":19,"position":{"Index":2,"MixedIn":false,"MixinIndex":0}},{"name":"in_hook","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"position":{"Index":3,"MixedIn":false,"MixinIndex":0},"comment":"A mandatory field that is set by the hook"}],"hooks":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":false,"MixinIndex":0},{"Index":1,"MixedIn":false,"MixinIndex":0}]},{"name":"User","config":{"Table":""},"edges":[{"name":"cards","type":"Card"},{"name":"friends","type":"User"},{"name":"best_friend","type":"User","unique":true}],"fields":[{"name":"version","type":{"Type":12,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":0,"default_kind":2,"position":{"Index":0,"MixedIn":true,"MixinIndex":0}},{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"worth","type":{"Type":17,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0}}],"hooks":[{"Index":0,"MixedIn":true,"MixinIndex":0}]}],"Features":["schema/snapshot"]}` +const Schema = `{"Schema":"entgo.io/ent/entc/integration/hooks/ent/schema","Package":"entgo.io/ent/entc/integration/hooks/ent","Schemas":[{"name":"Card","config":{"Table":""},"edges":[{"name":"owner","type":"User","ref_name":"cards","unique":true,"inverse":true}],"fields":[{"name":"number","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":"unknown","default_kind":24,"immutable":true,"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0},"comment":"Exact name written on card"},{"name":"created_at","type":{"Type":2,"Ident":"","PkgPath":"time","Nillable":false,"RType":null},"default":true,"default_kind":19,"position":{"Index":2,"MixedIn":false,"MixinIndex":0}},{"name":"in_hook","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"position":{"Index":3,"MixedIn":false,"MixinIndex":0},"comment":"A mandatory field that is set by the hook"}],"hooks":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":false,"MixinIndex":0},{"Index":1,"MixedIn":false,"MixinIndex":0}]},{"name":"User","config":{"Table":""},"edges":[{"name":"cards","type":"Card"},{"name":"friends","type":"User"},{"name":"best_friend","type":"User","unique":true}],"fields":[{"name":"version","type":{"Type":12,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":0,"default_kind":2,"position":{"Index":0,"MixedIn":true,"MixinIndex":0}},{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"worth","type":{"Type":17,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0}}],"hooks":[{"Index":0,"MixedIn":true,"MixinIndex":0}]}],"Features":["schema/snapshot"]}` diff --git a/entc/integration/hooks/ent/migrate/migrate.go b/entc/integration/hooks/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/hooks/ent/migrate/migrate.go +++ b/entc/integration/hooks/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/hooks/ent/migrate/schema.go b/entc/integration/hooks/ent/migrate/schema.go index 1f17c6887..d79b37aa9 100644 --- a/entc/integration/hooks/ent/migrate/schema.go +++ b/entc/integration/hooks/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/hooks/ent/mutation.go b/entc/integration/hooks/ent/mutation.go index 832ef2384..29100eb3e 100644 --- a/entc/integration/hooks/ent/mutation.go +++ b/entc/integration/hooks/ent/mutation.go @@ -12,11 +12,11 @@ import ( "sync" "time" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" - "github.com/facebook/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/hooks/ent/predicate/predicate.go b/entc/integration/hooks/ent/predicate/predicate.go index 1754de615..3fa8c0c45 100644 --- a/entc/integration/hooks/ent/predicate/predicate.go +++ b/entc/integration/hooks/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Card is the predicate function for card builders. diff --git a/entc/integration/hooks/ent/runtime.go b/entc/integration/hooks/ent/runtime.go index 14bcd2d43..f4cbd3d38 100644 --- a/entc/integration/hooks/ent/runtime.go +++ b/entc/integration/hooks/ent/runtime.go @@ -6,4 +6,4 @@ package ent -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/hooks/ent/runtime/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/hooks/ent/runtime/runtime.go diff --git a/entc/integration/hooks/ent/runtime/runtime.go b/entc/integration/hooks/ent/runtime/runtime.go index ef08bcc81..7cb892a75 100644 --- a/entc/integration/hooks/ent/runtime/runtime.go +++ b/entc/integration/hooks/ent/runtime/runtime.go @@ -9,9 +9,9 @@ package runtime import ( "time" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/schema" - "github.com/facebook/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/schema" + "entgo.io/ent/entc/integration/hooks/ent/user" ) // The init function reads all schema descriptors with runtime code diff --git a/entc/integration/hooks/ent/schema/card.go b/entc/integration/hooks/ent/schema/card.go index fd3a5764a..94c7a816e 100644 --- a/entc/integration/hooks/ent/schema/card.go +++ b/entc/integration/hooks/ent/schema/card.go @@ -9,13 +9,13 @@ import ( "fmt" "time" - "github.com/facebook/ent" - gen "github.com/facebook/ent/entc/integration/hooks/ent" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/hook" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + gen "entgo.io/ent/entc/integration/hooks/ent" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/hook" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/mixin" ) // RejectMany rejects all update operations diff --git a/entc/integration/hooks/ent/schema/user.go b/entc/integration/hooks/ent/schema/user.go index 2b21191bd..06afe1aee 100644 --- a/entc/integration/hooks/ent/schema/user.go +++ b/entc/integration/hooks/ent/schema/user.go @@ -8,12 +8,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/hooks/ent/hook" + "entgo.io/ent/entc/integration/hooks/ent/hook" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/mixin" ) // User holds the schema definition for the User entity. diff --git a/entc/integration/hooks/ent/tx.go b/entc/integration/hooks/ent/tx.go index 5ed22bb3e..300036ce5 100644 --- a/entc/integration/hooks/ent/tx.go +++ b/entc/integration/hooks/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/hooks/ent/user.go b/entc/integration/hooks/ent/user.go index 35ef70b8f..6c7168747 100644 --- a/entc/integration/hooks/ent/user.go +++ b/entc/integration/hooks/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/hooks/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/hooks/ent/user/user.go b/entc/integration/hooks/ent/user/user.go index 0730e86d7..959b2bfb3 100644 --- a/entc/integration/hooks/ent/user/user.go +++ b/entc/integration/hooks/ent/user/user.go @@ -7,7 +7,7 @@ package user import ( - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -84,7 +84,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/entc/integration/hooks/ent/runtime" +// import _ "entgo.io/ent/entc/integration/hooks/ent/runtime" // var ( Hooks [1]ent.Hook diff --git a/entc/integration/hooks/ent/user/where.go b/entc/integration/hooks/ent/user/where.go index 3421d8f9d..d8aa90ce2 100644 --- a/entc/integration/hooks/ent/user/where.go +++ b/entc/integration/hooks/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/hooks/ent/user_create.go b/entc/integration/hooks/ent/user_create.go index 2c145c785..1bed7431e 100644 --- a/entc/integration/hooks/ent/user_create.go +++ b/entc/integration/hooks/ent/user_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/hooks/ent/user_delete.go b/entc/integration/hooks/ent/user_delete.go index ef87bdc1e..28c5a80bd 100644 --- a/entc/integration/hooks/ent/user_delete.go +++ b/entc/integration/hooks/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" - "github.com/facebook/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/hooks/ent/user_query.go b/entc/integration/hooks/ent/user_query.go index 8e2f46c5b..af56ebfde 100644 --- a/entc/integration/hooks/ent/user_query.go +++ b/entc/integration/hooks/ent/user_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" - "github.com/facebook/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/hooks/ent/user_update.go b/entc/integration/hooks/ent/user_update.go index 7a99ba30d..0a78a3bcf 100644 --- a/entc/integration/hooks/ent/user_update.go +++ b/entc/integration/hooks/ent/user_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/predicate" - "github.com/facebook/ent/entc/integration/hooks/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/predicate" + "entgo.io/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/hooks/hooks_test.go b/entc/integration/hooks/hooks_test.go index a548f0234..7494d3d8c 100644 --- a/entc/integration/hooks/hooks_test.go +++ b/entc/integration/hooks/hooks_test.go @@ -10,12 +10,12 @@ import ( "sort" "testing" - "github.com/facebook/ent/entc/integration/hooks/ent" - "github.com/facebook/ent/entc/integration/hooks/ent/card" - "github.com/facebook/ent/entc/integration/hooks/ent/enttest" - "github.com/facebook/ent/entc/integration/hooks/ent/hook" - "github.com/facebook/ent/entc/integration/hooks/ent/migrate" - "github.com/facebook/ent/entc/integration/hooks/ent/user" + "entgo.io/ent/entc/integration/hooks/ent" + "entgo.io/ent/entc/integration/hooks/ent/card" + "entgo.io/ent/entc/integration/hooks/ent/enttest" + "entgo.io/ent/entc/integration/hooks/ent/hook" + "entgo.io/ent/entc/integration/hooks/ent/migrate" + "entgo.io/ent/entc/integration/hooks/ent/user" _ "github.com/mattn/go-sqlite3" "github.com/stretchr/testify/require" diff --git a/entc/integration/idtype/ent/client.go b/entc/integration/idtype/ent/client.go index 0518d707c..a15f1b49e 100644 --- a/entc/integration/idtype/ent/client.go +++ b/entc/integration/idtype/ent/client.go @@ -11,13 +11,13 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/idtype/ent/migrate" + "entgo.io/ent/entc/integration/idtype/ent/migrate" - "github.com/facebook/ent/entc/integration/idtype/ent/user" + "entgo.io/ent/entc/integration/idtype/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/idtype/ent/config.go b/entc/integration/idtype/ent/config.go index 97712c973..461de3d8d 100644 --- a/entc/integration/idtype/ent/config.go +++ b/entc/integration/idtype/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/idtype/ent/ent.go b/entc/integration/idtype/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/idtype/ent/ent.go +++ b/entc/integration/idtype/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/idtype/ent/enttest/enttest.go b/entc/integration/idtype/ent/enttest/enttest.go index 7a745c047..7ced9c19d 100644 --- a/entc/integration/idtype/ent/enttest/enttest.go +++ b/entc/integration/idtype/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/idtype/ent" + "entgo.io/ent/entc/integration/idtype/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/idtype/ent/runtime" + _ "entgo.io/ent/entc/integration/idtype/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/idtype/ent/generate.go b/entc/integration/idtype/ent/generate.go index 4e3ad9ab3..075fb0c73 100644 --- a/entc/integration/idtype/ent/generate.go +++ b/entc/integration/idtype/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." --idtype uint64 ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." --idtype uint64 ./schema diff --git a/entc/integration/idtype/ent/hook/hook.go b/entc/integration/idtype/ent/hook/hook.go index 8337e85a7..1fca17594 100644 --- a/entc/integration/idtype/ent/hook/hook.go +++ b/entc/integration/idtype/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/idtype/ent" + "entgo.io/ent/entc/integration/idtype/ent" ) // The UserFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/idtype/ent/migrate/migrate.go b/entc/integration/idtype/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/idtype/ent/migrate/migrate.go +++ b/entc/integration/idtype/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/idtype/ent/migrate/schema.go b/entc/integration/idtype/ent/migrate/schema.go index 4486b41b6..42a45c621 100644 --- a/entc/integration/idtype/ent/migrate/schema.go +++ b/entc/integration/idtype/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/idtype/ent/mutation.go b/entc/integration/idtype/ent/mutation.go index 57e122087..63dd894e8 100644 --- a/entc/integration/idtype/ent/mutation.go +++ b/entc/integration/idtype/ent/mutation.go @@ -11,10 +11,10 @@ import ( "fmt" "sync" - "github.com/facebook/ent/entc/integration/idtype/ent/predicate" - "github.com/facebook/ent/entc/integration/idtype/ent/user" + "entgo.io/ent/entc/integration/idtype/ent/predicate" + "entgo.io/ent/entc/integration/idtype/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/idtype/ent/predicate/predicate.go b/entc/integration/idtype/ent/predicate/predicate.go index 5df743681..e8922f489 100644 --- a/entc/integration/idtype/ent/predicate/predicate.go +++ b/entc/integration/idtype/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // User is the predicate function for user builders. diff --git a/entc/integration/idtype/ent/runtime/runtime.go b/entc/integration/idtype/ent/runtime/runtime.go index 864a773e9..bb4ddeb21 100644 --- a/entc/integration/idtype/ent/runtime/runtime.go +++ b/entc/integration/idtype/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/idtype/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/idtype/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/idtype/ent/schema/user.go b/entc/integration/idtype/ent/schema/user.go index 20424d477..070aa3915 100644 --- a/entc/integration/idtype/ent/schema/user.go +++ b/entc/integration/idtype/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/entc/integration/idtype/ent/tx.go b/entc/integration/idtype/ent/tx.go index 1f608018b..f3aaeb4de 100644 --- a/entc/integration/idtype/ent/tx.go +++ b/entc/integration/idtype/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/idtype/ent/user.go b/entc/integration/idtype/ent/user.go index 624c58de9..9fa71806b 100644 --- a/entc/integration/idtype/ent/user.go +++ b/entc/integration/idtype/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/idtype/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/idtype/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/idtype/ent/user/where.go b/entc/integration/idtype/ent/user/where.go index dda7f8670..321027bc2 100644 --- a/entc/integration/idtype/ent/user/where.go +++ b/entc/integration/idtype/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/idtype/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/idtype/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/idtype/ent/user_create.go b/entc/integration/idtype/ent/user_create.go index 10a11005d..70337c226 100644 --- a/entc/integration/idtype/ent/user_create.go +++ b/entc/integration/idtype/ent/user_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/idtype/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/idtype/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/idtype/ent/user_delete.go b/entc/integration/idtype/ent/user_delete.go index f30bab0d1..8e800ed04 100644 --- a/entc/integration/idtype/ent/user_delete.go +++ b/entc/integration/idtype/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/idtype/ent/predicate" - "github.com/facebook/ent/entc/integration/idtype/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/idtype/ent/predicate" + "entgo.io/ent/entc/integration/idtype/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/idtype/ent/user_query.go b/entc/integration/idtype/ent/user_query.go index 79c6590d4..47ecd680c 100644 --- a/entc/integration/idtype/ent/user_query.go +++ b/entc/integration/idtype/ent/user_query.go @@ -13,11 +13,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/idtype/ent/predicate" - "github.com/facebook/ent/entc/integration/idtype/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/idtype/ent/predicate" + "entgo.io/ent/entc/integration/idtype/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/idtype/ent/user_update.go b/entc/integration/idtype/ent/user_update.go index 3f6105ddc..fb1dcf47b 100644 --- a/entc/integration/idtype/ent/user_update.go +++ b/entc/integration/idtype/ent/user_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/idtype/ent/predicate" - "github.com/facebook/ent/entc/integration/idtype/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/idtype/ent/predicate" + "entgo.io/ent/entc/integration/idtype/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/idtype/idtype_test.go b/entc/integration/idtype/idtype_test.go index 94c545498..413dfa1b0 100644 --- a/entc/integration/idtype/idtype_test.go +++ b/entc/integration/idtype/idtype_test.go @@ -8,9 +8,9 @@ import ( "context" "testing" - "github.com/facebook/ent/entc/integration/idtype/ent" - "github.com/facebook/ent/entc/integration/idtype/ent/migrate" - "github.com/facebook/ent/entc/integration/idtype/ent/user" + "entgo.io/ent/entc/integration/idtype/ent" + "entgo.io/ent/entc/integration/idtype/ent/migrate" + "entgo.io/ent/entc/integration/idtype/ent/user" _ "github.com/mattn/go-sqlite3" "github.com/stretchr/testify/require" diff --git a/entc/integration/index_test.go b/entc/integration/index_test.go index 58af4d69f..abab34d62 100644 --- a/entc/integration/index_test.go +++ b/entc/integration/index_test.go @@ -8,7 +8,7 @@ import ( "context" "testing" - "github.com/facebook/ent/entc/integration/ent" + "entgo.io/ent/entc/integration/ent" "github.com/stretchr/testify/require" ) diff --git a/entc/integration/integration_test.go b/entc/integration/integration_test.go index e626e8a70..681cb1d31 100644 --- a/entc/integration/integration_test.go +++ b/entc/integration/integration_test.go @@ -20,19 +20,19 @@ import ( "testing" "time" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/entc/integration/ent" - "github.com/facebook/ent/entc/integration/ent/enttest" - "github.com/facebook/ent/entc/integration/ent/file" - "github.com/facebook/ent/entc/integration/ent/filetype" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/groupinfo" - "github.com/facebook/ent/entc/integration/ent/hook" - "github.com/facebook/ent/entc/integration/ent/migrate" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/dialect" + "entgo.io/ent/entc/integration/ent" + "entgo.io/ent/entc/integration/ent/enttest" + "entgo.io/ent/entc/integration/ent/file" + "entgo.io/ent/entc/integration/ent/filetype" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/groupinfo" + "entgo.io/ent/entc/integration/ent/hook" + "entgo.io/ent/entc/integration/ent/migrate" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/user" "github.com/stretchr/testify/mock" _ "github.com/go-sql-driver/mysql" diff --git a/entc/integration/json/ent/client.go b/entc/integration/json/ent/client.go index 653fb8c42..b7df6e40b 100644 --- a/entc/integration/json/ent/client.go +++ b/entc/integration/json/ent/client.go @@ -11,12 +11,12 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/json/ent/migrate" + "entgo.io/ent/entc/integration/json/ent/migrate" - "github.com/facebook/ent/entc/integration/json/ent/user" + "entgo.io/ent/entc/integration/json/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/json/ent/config.go b/entc/integration/json/ent/config.go index 97712c973..461de3d8d 100644 --- a/entc/integration/json/ent/config.go +++ b/entc/integration/json/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/json/ent/ent.go b/entc/integration/json/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/json/ent/ent.go +++ b/entc/integration/json/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/json/ent/enttest/enttest.go b/entc/integration/json/ent/enttest/enttest.go index a8980d22a..2174c1aeb 100644 --- a/entc/integration/json/ent/enttest/enttest.go +++ b/entc/integration/json/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/json/ent" + "entgo.io/ent/entc/integration/json/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/json/ent/runtime" + _ "entgo.io/ent/entc/integration/json/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/json/ent/generate.go b/entc/integration/json/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/entc/integration/json/ent/generate.go +++ b/entc/integration/json/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/json/ent/hook/hook.go b/entc/integration/json/ent/hook/hook.go index 1b129a54e..d7bf1fc6c 100644 --- a/entc/integration/json/ent/hook/hook.go +++ b/entc/integration/json/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/json/ent" + "entgo.io/ent/entc/integration/json/ent" ) // The UserFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/json/ent/migrate/migrate.go b/entc/integration/json/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/json/ent/migrate/migrate.go +++ b/entc/integration/json/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/json/ent/migrate/schema.go b/entc/integration/json/ent/migrate/schema.go index 328e9f49b..70b817cd3 100644 --- a/entc/integration/json/ent/migrate/schema.go +++ b/entc/integration/json/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/json/ent/mutation.go b/entc/integration/json/ent/mutation.go index 95e40501a..4b20c2502 100644 --- a/entc/integration/json/ent/mutation.go +++ b/entc/integration/json/ent/mutation.go @@ -14,11 +14,11 @@ import ( "net/url" "sync" - "github.com/facebook/ent/entc/integration/json/ent/predicate" - "github.com/facebook/ent/entc/integration/json/ent/schema" - "github.com/facebook/ent/entc/integration/json/ent/user" + "entgo.io/ent/entc/integration/json/ent/predicate" + "entgo.io/ent/entc/integration/json/ent/schema" + "entgo.io/ent/entc/integration/json/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/json/ent/predicate/predicate.go b/entc/integration/json/ent/predicate/predicate.go index 5df743681..e8922f489 100644 --- a/entc/integration/json/ent/predicate/predicate.go +++ b/entc/integration/json/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // User is the predicate function for user builders. diff --git a/entc/integration/json/ent/runtime/runtime.go b/entc/integration/json/ent/runtime/runtime.go index 461532eb8..32adfa157 100644 --- a/entc/integration/json/ent/runtime/runtime.go +++ b/entc/integration/json/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/json/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/json/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/json/ent/schema/user.go b/entc/integration/json/ent/schema/user.go index fc97f2d5c..eee768db8 100644 --- a/entc/integration/json/ent/schema/user.go +++ b/entc/integration/json/ent/schema/user.go @@ -9,8 +9,8 @@ import ( "net/http" "net/url" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/entc/integration/json/ent/tx.go b/entc/integration/json/ent/tx.go index 1f608018b..f3aaeb4de 100644 --- a/entc/integration/json/ent/tx.go +++ b/entc/integration/json/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/json/ent/user.go b/entc/integration/json/ent/user.go index 3ed7a6877..203577cb1 100644 --- a/entc/integration/json/ent/user.go +++ b/entc/integration/json/ent/user.go @@ -13,9 +13,9 @@ import ( "net/url" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/json/ent/schema" - "github.com/facebook/ent/entc/integration/json/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/json/ent/schema" + "entgo.io/ent/entc/integration/json/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/json/ent/user/where.go b/entc/integration/json/ent/user/where.go index f6a175ae3..ba723d4e3 100644 --- a/entc/integration/json/ent/user/where.go +++ b/entc/integration/json/ent/user/where.go @@ -7,8 +7,8 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/json/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/json/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/json/ent/user_create.go b/entc/integration/json/ent/user_create.go index c03af1697..a72c9d681 100644 --- a/entc/integration/json/ent/user_create.go +++ b/entc/integration/json/ent/user_create.go @@ -13,10 +13,10 @@ import ( "net/http" "net/url" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/json/ent/schema" - "github.com/facebook/ent/entc/integration/json/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/json/ent/schema" + "entgo.io/ent/entc/integration/json/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/json/ent/user_delete.go b/entc/integration/json/ent/user_delete.go index b1e25d37f..2c85222ab 100644 --- a/entc/integration/json/ent/user_delete.go +++ b/entc/integration/json/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/json/ent/predicate" - "github.com/facebook/ent/entc/integration/json/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/json/ent/predicate" + "entgo.io/ent/entc/integration/json/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/json/ent/user_query.go b/entc/integration/json/ent/user_query.go index 993621e0e..dc47df225 100644 --- a/entc/integration/json/ent/user_query.go +++ b/entc/integration/json/ent/user_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/json/ent/predicate" - "github.com/facebook/ent/entc/integration/json/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/json/ent/predicate" + "entgo.io/ent/entc/integration/json/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/json/ent/user_update.go b/entc/integration/json/ent/user_update.go index 0bb8aba80..89ca6313a 100644 --- a/entc/integration/json/ent/user_update.go +++ b/entc/integration/json/ent/user_update.go @@ -13,12 +13,12 @@ import ( "net/http" "net/url" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/json/ent/predicate" - "github.com/facebook/ent/entc/integration/json/ent/schema" - "github.com/facebook/ent/entc/integration/json/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/json/ent/predicate" + "entgo.io/ent/entc/integration/json/ent/schema" + "entgo.io/ent/entc/integration/json/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/json/json_test.go b/entc/integration/json/json_test.go index 1f9d7ffe7..2453911c9 100644 --- a/entc/integration/json/json_test.go +++ b/entc/integration/json/json_test.go @@ -12,14 +12,14 @@ import ( "net/url" "testing" - "github.com/facebook/ent/entc/integration/json/ent/schema" + "entgo.io/ent/entc/integration/json/ent/schema" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqljson" - "github.com/facebook/ent/entc/integration/json/ent" - "github.com/facebook/ent/entc/integration/json/ent/migrate" - "github.com/facebook/ent/entc/integration/json/ent/user" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqljson" + "entgo.io/ent/entc/integration/json/ent" + "entgo.io/ent/entc/integration/json/ent/migrate" + "entgo.io/ent/entc/integration/json/ent/user" _ "github.com/go-sql-driver/mysql" _ "github.com/lib/pq" diff --git a/entc/integration/migrate/entv1/car.go b/entc/integration/migrate/entv1/car.go index 1af49cc32..2b51e08bb 100644 --- a/entc/integration/migrate/entv1/car.go +++ b/entc/integration/migrate/entv1/car.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/user" ) // Car is the model entity for the Car schema. diff --git a/entc/integration/migrate/entv1/car/where.go b/entc/integration/migrate/entv1/car/where.go index 78f5e30f4..4b4f18df2 100644 --- a/entc/integration/migrate/entv1/car/where.go +++ b/entc/integration/migrate/entv1/car/where.go @@ -7,9 +7,9 @@ package car import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv1/car_create.go b/entc/integration/migrate/entv1/car_create.go index fdf84e91d..0a4bda5e3 100644 --- a/entc/integration/migrate/entv1/car_create.go +++ b/entc/integration/migrate/entv1/car_create.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/schema/field" ) // CarCreate is the builder for creating a Car entity. diff --git a/entc/integration/migrate/entv1/car_delete.go b/entc/integration/migrate/entv1/car_delete.go index 0387a7ab7..b82826a91 100644 --- a/entc/integration/migrate/entv1/car_delete.go +++ b/entc/integration/migrate/entv1/car_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/schema/field" ) // CarDelete is the builder for deleting a Car entity. diff --git a/entc/integration/migrate/entv1/car_query.go b/entc/integration/migrate/entv1/car_query.go index 9946b0f47..54eadbcd3 100644 --- a/entc/integration/migrate/entv1/car_query.go +++ b/entc/integration/migrate/entv1/car_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/schema/field" ) // CarQuery is the builder for querying Car entities. diff --git a/entc/integration/migrate/entv1/car_update.go b/entc/integration/migrate/entv1/car_update.go index 1e179f144..8717d164a 100644 --- a/entc/integration/migrate/entv1/car_update.go +++ b/entc/integration/migrate/entv1/car_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/schema/field" ) // CarUpdate is the builder for updating Car entities. diff --git a/entc/integration/migrate/entv1/client.go b/entc/integration/migrate/entv1/client.go index e1a570856..8f8633414 100644 --- a/entc/integration/migrate/entv1/client.go +++ b/entc/integration/migrate/entv1/client.go @@ -11,16 +11,16 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/migrate/entv1/migrate" + "entgo.io/ent/entc/integration/migrate/entv1/migrate" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv1/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/conversion" + "entgo.io/ent/entc/integration/migrate/entv1/customtype" + "entgo.io/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/migrate/entv1/config.go b/entc/integration/migrate/entv1/config.go index 8305a37dd..c2b051205 100644 --- a/entc/integration/migrate/entv1/config.go +++ b/entc/integration/migrate/entv1/config.go @@ -7,8 +7,8 @@ package entv1 import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/migrate/entv1/conversion.go b/entc/integration/migrate/entv1/conversion.go index 590af2613..08f673aac 100644 --- a/entc/integration/migrate/entv1/conversion.go +++ b/entc/integration/migrate/entv1/conversion.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv1/conversion" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv1/conversion" ) // Conversion is the model entity for the Conversion schema. diff --git a/entc/integration/migrate/entv1/conversion/where.go b/entc/integration/migrate/entv1/conversion/where.go index 4021070cd..cd138be2c 100644 --- a/entc/integration/migrate/entv1/conversion/where.go +++ b/entc/integration/migrate/entv1/conversion/where.go @@ -7,8 +7,8 @@ package conversion import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv1/conversion_create.go b/entc/integration/migrate/entv1/conversion_create.go index bc5e8a2a6..1374cf374 100644 --- a/entc/integration/migrate/entv1/conversion_create.go +++ b/entc/integration/migrate/entv1/conversion_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/conversion" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/conversion" + "entgo.io/ent/schema/field" ) // ConversionCreate is the builder for creating a Conversion entity. diff --git a/entc/integration/migrate/entv1/conversion_delete.go b/entc/integration/migrate/entv1/conversion_delete.go index 3ae722501..7b3bf51d6 100644 --- a/entc/integration/migrate/entv1/conversion_delete.go +++ b/entc/integration/migrate/entv1/conversion_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/conversion" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/schema/field" ) // ConversionDelete is the builder for deleting a Conversion entity. diff --git a/entc/integration/migrate/entv1/conversion_query.go b/entc/integration/migrate/entv1/conversion_query.go index 3e483ebc3..bc1316191 100644 --- a/entc/integration/migrate/entv1/conversion_query.go +++ b/entc/integration/migrate/entv1/conversion_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/conversion" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/schema/field" ) // ConversionQuery is the builder for querying Conversion entities. diff --git a/entc/integration/migrate/entv1/conversion_update.go b/entc/integration/migrate/entv1/conversion_update.go index 144c8cc97..c07fbc000 100644 --- a/entc/integration/migrate/entv1/conversion_update.go +++ b/entc/integration/migrate/entv1/conversion_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/conversion" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/schema/field" ) // ConversionUpdate is the builder for updating Conversion entities. diff --git a/entc/integration/migrate/entv1/customtype.go b/entc/integration/migrate/entv1/customtype.go index 0c823f5df..5b442ebd5 100644 --- a/entc/integration/migrate/entv1/customtype.go +++ b/entc/integration/migrate/entv1/customtype.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv1/customtype" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv1/customtype" ) // CustomType is the model entity for the CustomType schema. diff --git a/entc/integration/migrate/entv1/customtype/where.go b/entc/integration/migrate/entv1/customtype/where.go index 787492c0d..951114a75 100644 --- a/entc/integration/migrate/entv1/customtype/where.go +++ b/entc/integration/migrate/entv1/customtype/where.go @@ -7,8 +7,8 @@ package customtype import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv1/customtype_create.go b/entc/integration/migrate/entv1/customtype_create.go index ee2390393..7b914a348 100644 --- a/entc/integration/migrate/entv1/customtype_create.go +++ b/entc/integration/migrate/entv1/customtype_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/customtype" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/customtype" + "entgo.io/ent/schema/field" ) // CustomTypeCreate is the builder for creating a CustomType entity. diff --git a/entc/integration/migrate/entv1/customtype_delete.go b/entc/integration/migrate/entv1/customtype_delete.go index 71358f698..1bfd2dc0e 100644 --- a/entc/integration/migrate/entv1/customtype_delete.go +++ b/entc/integration/migrate/entv1/customtype_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/customtype" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/schema/field" ) // CustomTypeDelete is the builder for deleting a CustomType entity. diff --git a/entc/integration/migrate/entv1/customtype_query.go b/entc/integration/migrate/entv1/customtype_query.go index 1091614ba..8d1ea4066 100644 --- a/entc/integration/migrate/entv1/customtype_query.go +++ b/entc/integration/migrate/entv1/customtype_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/customtype" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/schema/field" ) // CustomTypeQuery is the builder for querying CustomType entities. diff --git a/entc/integration/migrate/entv1/customtype_update.go b/entc/integration/migrate/entv1/customtype_update.go index 307272ad4..66cf08828 100644 --- a/entc/integration/migrate/entv1/customtype_update.go +++ b/entc/integration/migrate/entv1/customtype_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/customtype" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/schema/field" ) // CustomTypeUpdate is the builder for updating CustomType entities. diff --git a/entc/integration/migrate/entv1/ent.go b/entc/integration/migrate/entv1/ent.go index 0e32659d1..20840f6a2 100644 --- a/entc/integration/migrate/entv1/ent.go +++ b/entc/integration/migrate/entv1/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/migrate/entv1/enttest/enttest.go b/entc/integration/migrate/entv1/enttest/enttest.go index 558f5084b..a71973be2 100644 --- a/entc/integration/migrate/entv1/enttest/enttest.go +++ b/entc/integration/migrate/entv1/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/migrate/entv1" + "entgo.io/ent/entc/integration/migrate/entv1" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/migrate/entv1/runtime" + _ "entgo.io/ent/entc/integration/migrate/entv1/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/migrate/entv1/generate.go b/entc/integration/migrate/entv1/generate.go index e2915444a..ef506f503 100644 --- a/entc/integration/migrate/entv1/generate.go +++ b/entc/integration/migrate/entv1/generate.go @@ -4,4 +4,4 @@ package entv1 -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/migrate/entv1/hook/hook.go b/entc/integration/migrate/entv1/hook/hook.go index f44a208f5..7dafb5e5d 100644 --- a/entc/integration/migrate/entv1/hook/hook.go +++ b/entc/integration/migrate/entv1/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/migrate/entv1" + "entgo.io/ent/entc/integration/migrate/entv1" ) // The CarFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/migrate/entv1/migrate/migrate.go b/entc/integration/migrate/entv1/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/migrate/entv1/migrate/migrate.go +++ b/entc/integration/migrate/entv1/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/migrate/entv1/migrate/schema.go b/entc/integration/migrate/entv1/migrate/schema.go index 35a0d1469..93103222f 100644 --- a/entc/integration/migrate/entv1/migrate/schema.go +++ b/entc/integration/migrate/entv1/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/migrate/entv1/mutation.go b/entc/integration/migrate/entv1/mutation.go index 859fdb10d..643fe592b 100644 --- a/entc/integration/migrate/entv1/mutation.go +++ b/entc/integration/migrate/entv1/mutation.go @@ -11,13 +11,13 @@ import ( "fmt" "sync" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv1/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/conversion" + "entgo.io/ent/entc/integration/migrate/entv1/customtype" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/migrate/entv1/predicate/predicate.go b/entc/integration/migrate/entv1/predicate/predicate.go index 62d823190..03b1163db 100644 --- a/entc/integration/migrate/entv1/predicate/predicate.go +++ b/entc/integration/migrate/entv1/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Car is the predicate function for car builders. diff --git a/entc/integration/migrate/entv1/runtime.go b/entc/integration/migrate/entv1/runtime.go index 888d2f42b..3d8501742 100644 --- a/entc/integration/migrate/entv1/runtime.go +++ b/entc/integration/migrate/entv1/runtime.go @@ -7,8 +7,8 @@ package entv1 import ( - "github.com/facebook/ent/entc/integration/migrate/entv1/schema" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/entc/integration/migrate/entv1/schema" + "entgo.io/ent/entc/integration/migrate/entv1/user" ) // The init function reads all schema descriptors with runtime code diff --git a/entc/integration/migrate/entv1/runtime/runtime.go b/entc/integration/migrate/entv1/runtime/runtime.go index 3b6942664..c81910ee8 100644 --- a/entc/integration/migrate/entv1/runtime/runtime.go +++ b/entc/integration/migrate/entv1/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/migrate/entv1/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/migrate/entv1/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/migrate/entv1/schema/conversion.go b/entc/integration/migrate/entv1/schema/conversion.go index b8d1351f6..19d3d55ff 100644 --- a/entc/integration/migrate/entv1/schema/conversion.go +++ b/entc/integration/migrate/entv1/schema/conversion.go @@ -5,8 +5,8 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // Conversion holds the schema definition for the Conversion entity. diff --git a/entc/integration/migrate/entv1/schema/customtype.go b/entc/integration/migrate/entv1/schema/customtype.go index 0bfdbb415..9c28c53d8 100644 --- a/entc/integration/migrate/entv1/schema/customtype.go +++ b/entc/integration/migrate/entv1/schema/customtype.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/schema/field" ) // CustomType holds the schema definition for the CustomType entity. diff --git a/entc/integration/migrate/entv1/schema/user.go b/entc/integration/migrate/entv1/schema/user.go index 3212ce9b8..c694882f8 100644 --- a/entc/integration/migrate/entv1/schema/user.go +++ b/entc/integration/migrate/entv1/schema/user.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" ) // User holds the schema definition for the User entity. diff --git a/entc/integration/migrate/entv1/tx.go b/entc/integration/migrate/entv1/tx.go index f07a76e2e..c734eda13 100644 --- a/entc/integration/migrate/entv1/tx.go +++ b/entc/integration/migrate/entv1/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/migrate/entv1/user.go b/entc/integration/migrate/entv1/user.go index 88ad3d29a..654c26496 100644 --- a/entc/integration/migrate/entv1/user.go +++ b/entc/integration/migrate/entv1/user.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/migrate/entv1/user/where.go b/entc/integration/migrate/entv1/user/where.go index 5b7d3459f..0c87c8fa8 100644 --- a/entc/integration/migrate/entv1/user/where.go +++ b/entc/integration/migrate/entv1/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv1/user_create.go b/entc/integration/migrate/entv1/user_create.go index c1894909b..1a0e9fc26 100644 --- a/entc/integration/migrate/entv1/user_create.go +++ b/entc/integration/migrate/entv1/user_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/migrate/entv1/user_delete.go b/entc/integration/migrate/entv1/user_delete.go index 3e50489ab..d1bb5f3df 100644 --- a/entc/integration/migrate/entv1/user_delete.go +++ b/entc/integration/migrate/entv1/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/migrate/entv1/user_query.go b/entc/integration/migrate/entv1/user_query.go index f46a48402..10609abb2 100644 --- a/entc/integration/migrate/entv1/user_query.go +++ b/entc/integration/migrate/entv1/user_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/migrate/entv1/user_update.go b/entc/integration/migrate/entv1/user_update.go index 3e0e589e7..69f2323e1 100644 --- a/entc/integration/migrate/entv1/user_update.go +++ b/entc/integration/migrate/entv1/user_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv1/car" - "github.com/facebook/ent/entc/integration/migrate/entv1/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv1/car" + "entgo.io/ent/entc/integration/migrate/entv1/predicate" + "entgo.io/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/migrate/entv2/car.go b/entc/integration/migrate/entv2/car.go index 7909d3ad9..d4593975d 100644 --- a/entc/integration/migrate/entv2/car.go +++ b/entc/integration/migrate/entv2/car.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/user" ) // Car is the model entity for the Car schema. diff --git a/entc/integration/migrate/entv2/car/where.go b/entc/integration/migrate/entv2/car/where.go index d31648683..8831e6ce9 100644 --- a/entc/integration/migrate/entv2/car/where.go +++ b/entc/integration/migrate/entv2/car/where.go @@ -7,9 +7,9 @@ package car import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv2/car_create.go b/entc/integration/migrate/entv2/car_create.go index 5d6c604c3..d033fda80 100644 --- a/entc/integration/migrate/entv2/car_create.go +++ b/entc/integration/migrate/entv2/car_create.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // CarCreate is the builder for creating a Car entity. diff --git a/entc/integration/migrate/entv2/car_delete.go b/entc/integration/migrate/entv2/car_delete.go index c2efeef39..52c021d58 100644 --- a/entc/integration/migrate/entv2/car_delete.go +++ b/entc/integration/migrate/entv2/car_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // CarDelete is the builder for deleting a Car entity. diff --git a/entc/integration/migrate/entv2/car_query.go b/entc/integration/migrate/entv2/car_query.go index 4be9082a6..c10d6c7a8 100644 --- a/entc/integration/migrate/entv2/car_query.go +++ b/entc/integration/migrate/entv2/car_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // CarQuery is the builder for querying Car entities. diff --git a/entc/integration/migrate/entv2/car_update.go b/entc/integration/migrate/entv2/car_update.go index 0380551f0..e998573fb 100644 --- a/entc/integration/migrate/entv2/car_update.go +++ b/entc/integration/migrate/entv2/car_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // CarUpdate is the builder for updating Car entities. diff --git a/entc/integration/migrate/entv2/client.go b/entc/integration/migrate/entv2/client.go index b1fa3a5ec..61815819b 100644 --- a/entc/integration/migrate/entv2/client.go +++ b/entc/integration/migrate/entv2/client.go @@ -11,19 +11,19 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/migrate/entv2/migrate" + "entgo.io/ent/entc/integration/migrate/entv2/migrate" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv2/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv2/group" - "github.com/facebook/ent/entc/integration/migrate/entv2/media" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/conversion" + "entgo.io/ent/entc/integration/migrate/entv2/customtype" + "entgo.io/ent/entc/integration/migrate/entv2/group" + "entgo.io/ent/entc/integration/migrate/entv2/media" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/migrate/entv2/config.go b/entc/integration/migrate/entv2/config.go index a1d18f6dd..7c5a92da4 100644 --- a/entc/integration/migrate/entv2/config.go +++ b/entc/integration/migrate/entv2/config.go @@ -7,8 +7,8 @@ package entv2 import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/migrate/entv2/conversion.go b/entc/integration/migrate/entv2/conversion.go index 5d5b0f078..aaa5d6441 100644 --- a/entc/integration/migrate/entv2/conversion.go +++ b/entc/integration/migrate/entv2/conversion.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/conversion" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/conversion" ) // Conversion is the model entity for the Conversion schema. diff --git a/entc/integration/migrate/entv2/conversion/where.go b/entc/integration/migrate/entv2/conversion/where.go index 0aefc7a29..d3e038c25 100644 --- a/entc/integration/migrate/entv2/conversion/where.go +++ b/entc/integration/migrate/entv2/conversion/where.go @@ -7,8 +7,8 @@ package conversion import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv2/conversion_create.go b/entc/integration/migrate/entv2/conversion_create.go index 758e0c4e2..f1edfbbc8 100644 --- a/entc/integration/migrate/entv2/conversion_create.go +++ b/entc/integration/migrate/entv2/conversion_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/conversion" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/conversion" + "entgo.io/ent/schema/field" ) // ConversionCreate is the builder for creating a Conversion entity. diff --git a/entc/integration/migrate/entv2/conversion_delete.go b/entc/integration/migrate/entv2/conversion_delete.go index 0c030e848..742e7ac61 100644 --- a/entc/integration/migrate/entv2/conversion_delete.go +++ b/entc/integration/migrate/entv2/conversion_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/conversion" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // ConversionDelete is the builder for deleting a Conversion entity. diff --git a/entc/integration/migrate/entv2/conversion_query.go b/entc/integration/migrate/entv2/conversion_query.go index 581d747a7..a4da5332f 100644 --- a/entc/integration/migrate/entv2/conversion_query.go +++ b/entc/integration/migrate/entv2/conversion_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/conversion" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // ConversionQuery is the builder for querying Conversion entities. diff --git a/entc/integration/migrate/entv2/conversion_update.go b/entc/integration/migrate/entv2/conversion_update.go index 021ba22ee..411c686f5 100644 --- a/entc/integration/migrate/entv2/conversion_update.go +++ b/entc/integration/migrate/entv2/conversion_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/conversion" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // ConversionUpdate is the builder for updating Conversion entities. diff --git a/entc/integration/migrate/entv2/customtype.go b/entc/integration/migrate/entv2/customtype.go index 0c5f68ee1..8ffb6af62 100644 --- a/entc/integration/migrate/entv2/customtype.go +++ b/entc/integration/migrate/entv2/customtype.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/customtype" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/customtype" ) // CustomType is the model entity for the CustomType schema. diff --git a/entc/integration/migrate/entv2/customtype/where.go b/entc/integration/migrate/entv2/customtype/where.go index b68249c59..23b6cc00f 100644 --- a/entc/integration/migrate/entv2/customtype/where.go +++ b/entc/integration/migrate/entv2/customtype/where.go @@ -7,8 +7,8 @@ package customtype import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv2/customtype_create.go b/entc/integration/migrate/entv2/customtype_create.go index 04aaa9889..788c28651 100644 --- a/entc/integration/migrate/entv2/customtype_create.go +++ b/entc/integration/migrate/entv2/customtype_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/customtype" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/customtype" + "entgo.io/ent/schema/field" ) // CustomTypeCreate is the builder for creating a CustomType entity. diff --git a/entc/integration/migrate/entv2/customtype_delete.go b/entc/integration/migrate/entv2/customtype_delete.go index f1ad3b3e5..cd8529aa1 100644 --- a/entc/integration/migrate/entv2/customtype_delete.go +++ b/entc/integration/migrate/entv2/customtype_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/customtype" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // CustomTypeDelete is the builder for deleting a CustomType entity. diff --git a/entc/integration/migrate/entv2/customtype_query.go b/entc/integration/migrate/entv2/customtype_query.go index b4390d8a1..374a8e1f2 100644 --- a/entc/integration/migrate/entv2/customtype_query.go +++ b/entc/integration/migrate/entv2/customtype_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/customtype" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // CustomTypeQuery is the builder for querying CustomType entities. diff --git a/entc/integration/migrate/entv2/customtype_update.go b/entc/integration/migrate/entv2/customtype_update.go index 9e4416db6..94550ced1 100644 --- a/entc/integration/migrate/entv2/customtype_update.go +++ b/entc/integration/migrate/entv2/customtype_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/customtype" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // CustomTypeUpdate is the builder for updating CustomType entities. diff --git a/entc/integration/migrate/entv2/ent.go b/entc/integration/migrate/entv2/ent.go index 18d250673..c704bfcf4 100644 --- a/entc/integration/migrate/entv2/ent.go +++ b/entc/integration/migrate/entv2/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/migrate/entv2/enttest/enttest.go b/entc/integration/migrate/entv2/enttest/enttest.go index e9fa30f96..3d053a20f 100644 --- a/entc/integration/migrate/entv2/enttest/enttest.go +++ b/entc/integration/migrate/entv2/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/migrate/entv2" + "entgo.io/ent/entc/integration/migrate/entv2" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/migrate/entv2/runtime" + _ "entgo.io/ent/entc/integration/migrate/entv2/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/migrate/entv2/generate.go b/entc/integration/migrate/entv2/generate.go index f560553d2..72ddcb90c 100644 --- a/entc/integration/migrate/entv2/generate.go +++ b/entc/integration/migrate/entv2/generate.go @@ -4,4 +4,4 @@ package entv2 -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/migrate/entv2/group.go b/entc/integration/migrate/entv2/group.go index a316d0c19..07ae37218 100644 --- a/entc/integration/migrate/entv2/group.go +++ b/entc/integration/migrate/entv2/group.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/group" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/group" ) // Group is the model entity for the Group schema. diff --git a/entc/integration/migrate/entv2/group/where.go b/entc/integration/migrate/entv2/group/where.go index 166b3b732..7c0415276 100644 --- a/entc/integration/migrate/entv2/group/where.go +++ b/entc/integration/migrate/entv2/group/where.go @@ -7,8 +7,8 @@ package group import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv2/group_create.go b/entc/integration/migrate/entv2/group_create.go index 08e12d089..75a388339 100644 --- a/entc/integration/migrate/entv2/group_create.go +++ b/entc/integration/migrate/entv2/group_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/group" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/group" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/entc/integration/migrate/entv2/group_delete.go b/entc/integration/migrate/entv2/group_delete.go index 2e3308a17..145d7e176 100644 --- a/entc/integration/migrate/entv2/group_delete.go +++ b/entc/integration/migrate/entv2/group_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/group" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/group" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/entc/integration/migrate/entv2/group_query.go b/entc/integration/migrate/entv2/group_query.go index 3ca9a70aa..0cf5b39ea 100644 --- a/entc/integration/migrate/entv2/group_query.go +++ b/entc/integration/migrate/entv2/group_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/group" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/group" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/entc/integration/migrate/entv2/group_update.go b/entc/integration/migrate/entv2/group_update.go index 16b3b05ce..26bf6e6df 100644 --- a/entc/integration/migrate/entv2/group_update.go +++ b/entc/integration/migrate/entv2/group_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/group" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/group" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/entc/integration/migrate/entv2/hook/hook.go b/entc/integration/migrate/entv2/hook/hook.go index 7427d51d4..0fcfe2ef2 100644 --- a/entc/integration/migrate/entv2/hook/hook.go +++ b/entc/integration/migrate/entv2/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/migrate/entv2" + "entgo.io/ent/entc/integration/migrate/entv2" ) // The CarFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/migrate/entv2/media.go b/entc/integration/migrate/entv2/media.go index 20129ad0e..2d01db4a9 100644 --- a/entc/integration/migrate/entv2/media.go +++ b/entc/integration/migrate/entv2/media.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/media" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/media" ) // Media is the model entity for the Media schema. diff --git a/entc/integration/migrate/entv2/media/where.go b/entc/integration/migrate/entv2/media/where.go index 111568a99..3bca6e9c1 100644 --- a/entc/integration/migrate/entv2/media/where.go +++ b/entc/integration/migrate/entv2/media/where.go @@ -7,8 +7,8 @@ package media import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv2/media_create.go b/entc/integration/migrate/entv2/media_create.go index 2e5b273ff..9fb1c8cfb 100644 --- a/entc/integration/migrate/entv2/media_create.go +++ b/entc/integration/migrate/entv2/media_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/media" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/media" + "entgo.io/ent/schema/field" ) // MediaCreate is the builder for creating a Media entity. diff --git a/entc/integration/migrate/entv2/media_delete.go b/entc/integration/migrate/entv2/media_delete.go index b50d9d2a3..8b40fa086 100644 --- a/entc/integration/migrate/entv2/media_delete.go +++ b/entc/integration/migrate/entv2/media_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/media" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/media" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // MediaDelete is the builder for deleting a Media entity. diff --git a/entc/integration/migrate/entv2/media_query.go b/entc/integration/migrate/entv2/media_query.go index 888541110..df9edef19 100644 --- a/entc/integration/migrate/entv2/media_query.go +++ b/entc/integration/migrate/entv2/media_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/media" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/media" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // MediaQuery is the builder for querying Media entities. diff --git a/entc/integration/migrate/entv2/media_update.go b/entc/integration/migrate/entv2/media_update.go index 72ecdcccc..1e73ca96e 100644 --- a/entc/integration/migrate/entv2/media_update.go +++ b/entc/integration/migrate/entv2/media_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/media" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/media" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // MediaUpdate is the builder for updating Media entities. diff --git a/entc/integration/migrate/entv2/migrate/migrate.go b/entc/integration/migrate/entv2/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/migrate/entv2/migrate/migrate.go +++ b/entc/integration/migrate/entv2/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/migrate/entv2/migrate/schema.go b/entc/integration/migrate/entv2/migrate/schema.go index 1b4b18651..eb6e446ce 100644 --- a/entc/integration/migrate/entv2/migrate/schema.go +++ b/entc/integration/migrate/entv2/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/migrate/entv2/mutation.go b/entc/integration/migrate/entv2/mutation.go index ace200450..4ded8db91 100644 --- a/entc/integration/migrate/entv2/mutation.go +++ b/entc/integration/migrate/entv2/mutation.go @@ -11,15 +11,15 @@ import ( "fmt" "sync" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/conversion" - "github.com/facebook/ent/entc/integration/migrate/entv2/customtype" - "github.com/facebook/ent/entc/integration/migrate/entv2/media" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/conversion" + "entgo.io/ent/entc/integration/migrate/entv2/customtype" + "entgo.io/ent/entc/integration/migrate/entv2/media" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/migrate/entv2/pet.go b/entc/integration/migrate/entv2/pet.go index 3adbcca7e..7a066133f 100644 --- a/entc/integration/migrate/entv2/pet.go +++ b/entc/integration/migrate/entv2/pet.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/user" ) // Pet is the model entity for the Pet schema. diff --git a/entc/integration/migrate/entv2/pet/where.go b/entc/integration/migrate/entv2/pet/where.go index 0ae3dd144..c9bae2364 100644 --- a/entc/integration/migrate/entv2/pet/where.go +++ b/entc/integration/migrate/entv2/pet/where.go @@ -7,9 +7,9 @@ package pet import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv2/pet_create.go b/entc/integration/migrate/entv2/pet_create.go index c0fd24f31..650b5614d 100644 --- a/entc/integration/migrate/entv2/pet_create.go +++ b/entc/integration/migrate/entv2/pet_create.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // PetCreate is the builder for creating a Pet entity. diff --git a/entc/integration/migrate/entv2/pet_delete.go b/entc/integration/migrate/entv2/pet_delete.go index 6a25c31d0..d6b32744e 100644 --- a/entc/integration/migrate/entv2/pet_delete.go +++ b/entc/integration/migrate/entv2/pet_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/schema/field" ) // PetDelete is the builder for deleting a Pet entity. diff --git a/entc/integration/migrate/entv2/pet_query.go b/entc/integration/migrate/entv2/pet_query.go index 78f4c8b87..f04b1fe88 100644 --- a/entc/integration/migrate/entv2/pet_query.go +++ b/entc/integration/migrate/entv2/pet_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // PetQuery is the builder for querying Pet entities. diff --git a/entc/integration/migrate/entv2/pet_update.go b/entc/integration/migrate/entv2/pet_update.go index c5504cb9c..2bdf2f351 100644 --- a/entc/integration/migrate/entv2/pet_update.go +++ b/entc/integration/migrate/entv2/pet_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // PetUpdate is the builder for updating Pet entities. diff --git a/entc/integration/migrate/entv2/predicate/predicate.go b/entc/integration/migrate/entv2/predicate/predicate.go index 8a4f39bbd..aff3c49aa 100644 --- a/entc/integration/migrate/entv2/predicate/predicate.go +++ b/entc/integration/migrate/entv2/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Car is the predicate function for car builders. diff --git a/entc/integration/migrate/entv2/runtime.go b/entc/integration/migrate/entv2/runtime.go index b250eacdf..0deabb082 100644 --- a/entc/integration/migrate/entv2/runtime.go +++ b/entc/integration/migrate/entv2/runtime.go @@ -7,8 +7,8 @@ package entv2 import ( - "github.com/facebook/ent/entc/integration/migrate/entv2/schema" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/entc/integration/migrate/entv2/schema" + "entgo.io/ent/entc/integration/migrate/entv2/user" ) // The init function reads all schema descriptors with runtime code diff --git a/entc/integration/migrate/entv2/runtime/runtime.go b/entc/integration/migrate/entv2/runtime/runtime.go index 66a707e85..9a7cd2bc7 100644 --- a/entc/integration/migrate/entv2/runtime/runtime.go +++ b/entc/integration/migrate/entv2/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/migrate/entv2/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/migrate/entv2/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/migrate/entv2/schema/conversion.go b/entc/integration/migrate/entv2/schema/conversion.go index be313d14b..0a68d97c2 100644 --- a/entc/integration/migrate/entv2/schema/conversion.go +++ b/entc/integration/migrate/entv2/schema/conversion.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect/entsql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect/entsql" + "entgo.io/ent/schema/field" ) // Conversion holds the schema definition for the Conversion entity. diff --git a/entc/integration/migrate/entv2/schema/customtype.go b/entc/integration/migrate/entv2/schema/customtype.go index 0bfdbb415..9c28c53d8 100644 --- a/entc/integration/migrate/entv2/schema/customtype.go +++ b/entc/integration/migrate/entv2/schema/customtype.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/schema/field" ) // CustomType holds the schema definition for the CustomType entity. diff --git a/entc/integration/migrate/entv2/schema/media.go b/entc/integration/migrate/entv2/schema/media.go index d4ed4c119..5eef8ba99 100644 --- a/entc/integration/migrate/entv2/schema/media.go +++ b/entc/integration/migrate/entv2/schema/media.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" + "entgo.io/ent" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" ) // Media holds the schema definition for the Media entity. diff --git a/entc/integration/migrate/entv2/schema/user.go b/entc/integration/migrate/entv2/schema/user.go index ff3987d85..d87b65cd8 100644 --- a/entc/integration/migrate/entv2/schema/user.go +++ b/entc/integration/migrate/entv2/schema/user.go @@ -5,11 +5,11 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" + "entgo.io/ent/schema/mixin" ) type Mixin struct { diff --git a/entc/integration/migrate/entv2/tx.go b/entc/integration/migrate/entv2/tx.go index 5afe8f10d..5714c1453 100644 --- a/entc/integration/migrate/entv2/tx.go +++ b/entc/integration/migrate/entv2/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/migrate/entv2/user.go b/entc/integration/migrate/entv2/user.go index ab4cfbae4..4ace91470 100644 --- a/entc/integration/migrate/entv2/user.go +++ b/entc/integration/migrate/entv2/user.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/migrate/entv2/user/where.go b/entc/integration/migrate/entv2/user/where.go index e7ab5425e..40228211c 100644 --- a/entc/integration/migrate/entv2/user/where.go +++ b/entc/integration/migrate/entv2/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/migrate/entv2/user_create.go b/entc/integration/migrate/entv2/user_create.go index 393a13156..2539f037d 100644 --- a/entc/integration/migrate/entv2/user_create.go +++ b/entc/integration/migrate/entv2/user_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/migrate/entv2/user_delete.go b/entc/integration/migrate/entv2/user_delete.go index 03db0873e..4c75b9690 100644 --- a/entc/integration/migrate/entv2/user_delete.go +++ b/entc/integration/migrate/entv2/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/migrate/entv2/user_query.go b/entc/integration/migrate/entv2/user_query.go index 3b51063af..90fb8abad 100644 --- a/entc/integration/migrate/entv2/user_query.go +++ b/entc/integration/migrate/entv2/user_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/migrate/entv2/user_update.go b/entc/integration/migrate/entv2/user_update.go index ffb371a78..a71d25105 100644 --- a/entc/integration/migrate/entv2/user_update.go +++ b/entc/integration/migrate/entv2/user_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/migrate/entv2/car" - "github.com/facebook/ent/entc/integration/migrate/entv2/pet" - "github.com/facebook/ent/entc/integration/migrate/entv2/predicate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/migrate/entv2/car" + "entgo.io/ent/entc/integration/migrate/entv2/pet" + "entgo.io/ent/entc/integration/migrate/entv2/predicate" + "entgo.io/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/migrate/migrate_test.go b/entc/integration/migrate/migrate_test.go index e765bc670..a2c041096 100644 --- a/entc/integration/migrate/migrate_test.go +++ b/entc/integration/migrate/migrate_test.go @@ -12,15 +12,15 @@ import ( "strings" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/migrate/entv1" - migratev1 "github.com/facebook/ent/entc/integration/migrate/entv1/migrate" - userv1 "github.com/facebook/ent/entc/integration/migrate/entv1/user" - "github.com/facebook/ent/entc/integration/migrate/entv2" - "github.com/facebook/ent/entc/integration/migrate/entv2/conversion" - migratev2 "github.com/facebook/ent/entc/integration/migrate/entv2/migrate" - "github.com/facebook/ent/entc/integration/migrate/entv2/user" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/migrate/entv1" + migratev1 "entgo.io/ent/entc/integration/migrate/entv1/migrate" + userv1 "entgo.io/ent/entc/integration/migrate/entv1/user" + "entgo.io/ent/entc/integration/migrate/entv2" + "entgo.io/ent/entc/integration/migrate/entv2/conversion" + migratev2 "entgo.io/ent/entc/integration/migrate/entv2/migrate" + "entgo.io/ent/entc/integration/migrate/entv2/user" _ "github.com/go-sql-driver/mysql" _ "github.com/lib/pq" diff --git a/entc/integration/multischema/ent/client.go b/entc/integration/multischema/ent/client.go index 15c844807..73b144ee9 100644 --- a/entc/integration/multischema/ent/client.go +++ b/entc/integration/multischema/ent/client.go @@ -11,15 +11,15 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/multischema/ent/migrate" + "entgo.io/ent/entc/integration/multischema/ent/migrate" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/multischema/ent/config.go b/entc/integration/multischema/ent/config.go index 1736c1f17..00e70df8f 100644 --- a/entc/integration/multischema/ent/config.go +++ b/entc/integration/multischema/ent/config.go @@ -7,9 +7,9 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/entc/integration/multischema/ent/internal" ) // Option function to configure the client. diff --git a/entc/integration/multischema/ent/ent.go b/entc/integration/multischema/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/multischema/ent/ent.go +++ b/entc/integration/multischema/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/multischema/ent/enttest/enttest.go b/entc/integration/multischema/ent/enttest/enttest.go index 190fb70b3..18cdced87 100644 --- a/entc/integration/multischema/ent/enttest/enttest.go +++ b/entc/integration/multischema/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/multischema/ent" + "entgo.io/ent/entc/integration/multischema/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/multischema/ent/runtime" + _ "entgo.io/ent/entc/integration/multischema/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/multischema/ent/generate.go b/entc/integration/multischema/ent/generate.go index 9f41a479b..c5b69bcfa 100644 --- a/entc/integration/multischema/ent/generate.go +++ b/entc/integration/multischema/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --feature sql/schemaconfig --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --feature sql/schemaconfig --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/multischema/ent/group.go b/entc/integration/multischema/ent/group.go index a0565d30b..96df1aeea 100644 --- a/entc/integration/multischema/ent/group.go +++ b/entc/integration/multischema/ent/group.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/multischema/ent/group" ) // Group is the model entity for the Group schema. diff --git a/entc/integration/multischema/ent/group/where.go b/entc/integration/multischema/ent/group/where.go index 871a1400c..1640dae8c 100644 --- a/entc/integration/multischema/ent/group/where.go +++ b/entc/integration/multischema/ent/group/where.go @@ -7,10 +7,10 @@ package group import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/multischema/ent/group_create.go b/entc/integration/multischema/ent/group_create.go index a330d1a80..7ffa54417 100644 --- a/entc/integration/multischema/ent/group_create.go +++ b/entc/integration/multischema/ent/group_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/entc/integration/multischema/ent/group_delete.go b/entc/integration/multischema/ent/group_delete.go index eafa0130d..26541941a 100644 --- a/entc/integration/multischema/ent/group_delete.go +++ b/entc/integration/multischema/ent/group_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/entc/integration/multischema/ent/group_query.go b/entc/integration/multischema/ent/group_query.go index 21c3a6045..1252463db 100644 --- a/entc/integration/multischema/ent/group_query.go +++ b/entc/integration/multischema/ent/group_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/entc/integration/multischema/ent/group_update.go b/entc/integration/multischema/ent/group_update.go index e37eb92b0..d2131db1d 100644 --- a/entc/integration/multischema/ent/group_update.go +++ b/entc/integration/multischema/ent/group_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/entc/integration/multischema/ent/hook/hook.go b/entc/integration/multischema/ent/hook/hook.go index 63ba07c13..f88f40d45 100644 --- a/entc/integration/multischema/ent/hook/hook.go +++ b/entc/integration/multischema/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/multischema/ent" + "entgo.io/ent/entc/integration/multischema/ent" ) // The GroupFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/multischema/ent/migrate/migrate.go b/entc/integration/multischema/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/multischema/ent/migrate/migrate.go +++ b/entc/integration/multischema/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/multischema/ent/migrate/schema.go b/entc/integration/multischema/ent/migrate/schema.go index 2af1a14cd..f2809ab86 100644 --- a/entc/integration/multischema/ent/migrate/schema.go +++ b/entc/integration/multischema/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/multischema/ent/mutation.go b/entc/integration/multischema/ent/mutation.go index 8af59ec24..6fcfc7ecd 100644 --- a/entc/integration/multischema/ent/mutation.go +++ b/entc/integration/multischema/ent/mutation.go @@ -11,12 +11,12 @@ import ( "fmt" "sync" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/multischema/ent/pet.go b/entc/integration/multischema/ent/pet.go index b998fe60f..7a94fd61b 100644 --- a/entc/integration/multischema/ent/pet.go +++ b/entc/integration/multischema/ent/pet.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/user" ) // Pet is the model entity for the Pet schema. diff --git a/entc/integration/multischema/ent/pet/where.go b/entc/integration/multischema/ent/pet/where.go index 0e905e62d..a27cd8394 100644 --- a/entc/integration/multischema/ent/pet/where.go +++ b/entc/integration/multischema/ent/pet/where.go @@ -7,10 +7,10 @@ package pet import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/multischema/ent/pet_create.go b/entc/integration/multischema/ent/pet_create.go index c23491fab..0c3c82bda 100644 --- a/entc/integration/multischema/ent/pet_create.go +++ b/entc/integration/multischema/ent/pet_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // PetCreate is the builder for creating a Pet entity. diff --git a/entc/integration/multischema/ent/pet_delete.go b/entc/integration/multischema/ent/pet_delete.go index 8d79b6a96..fdf38b373 100644 --- a/entc/integration/multischema/ent/pet_delete.go +++ b/entc/integration/multischema/ent/pet_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/schema/field" ) // PetDelete is the builder for deleting a Pet entity. diff --git a/entc/integration/multischema/ent/pet_query.go b/entc/integration/multischema/ent/pet_query.go index b14621bd9..db47b6a11 100644 --- a/entc/integration/multischema/ent/pet_query.go +++ b/entc/integration/multischema/ent/pet_query.go @@ -12,13 +12,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // PetQuery is the builder for querying Pet entities. diff --git a/entc/integration/multischema/ent/pet_update.go b/entc/integration/multischema/ent/pet_update.go index 9104b53a5..8e69e29d6 100644 --- a/entc/integration/multischema/ent/pet_update.go +++ b/entc/integration/multischema/ent/pet_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // PetUpdate is the builder for updating Pet entities. diff --git a/entc/integration/multischema/ent/predicate/predicate.go b/entc/integration/multischema/ent/predicate/predicate.go index e4dcce964..f7df68c4a 100644 --- a/entc/integration/multischema/ent/predicate/predicate.go +++ b/entc/integration/multischema/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Group is the predicate function for group builders. diff --git a/entc/integration/multischema/ent/runtime.go b/entc/integration/multischema/ent/runtime.go index 3ef4201f4..7f03532aa 100644 --- a/entc/integration/multischema/ent/runtime.go +++ b/entc/integration/multischema/ent/runtime.go @@ -7,10 +7,10 @@ package ent import ( - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/schema" - "github.com/facebook/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/schema" + "entgo.io/ent/entc/integration/multischema/ent/user" ) // The init function reads all schema descriptors with runtime code diff --git a/entc/integration/multischema/ent/runtime/runtime.go b/entc/integration/multischema/ent/runtime/runtime.go index 6a40f4059..d26634a04 100644 --- a/entc/integration/multischema/ent/runtime/runtime.go +++ b/entc/integration/multischema/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/multischema/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/multischema/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/multischema/ent/schema/group.go b/entc/integration/multischema/ent/schema/group.go index ee7e605de..0232d5d65 100644 --- a/entc/integration/multischema/ent/schema/group.go +++ b/entc/integration/multischema/ent/schema/group.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Group holds the schema definition for the Group entity. diff --git a/entc/integration/multischema/ent/schema/pet.go b/entc/integration/multischema/ent/schema/pet.go index 03d7d497f..eb93499df 100644 --- a/entc/integration/multischema/ent/schema/pet.go +++ b/entc/integration/multischema/ent/schema/pet.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Pet holds the schema definition for the Pet entity. diff --git a/entc/integration/multischema/ent/schema/user.go b/entc/integration/multischema/ent/schema/user.go index 66f8cc2bd..6e81f0bcc 100644 --- a/entc/integration/multischema/ent/schema/user.go +++ b/entc/integration/multischema/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/entc/integration/multischema/ent/tx.go b/entc/integration/multischema/ent/tx.go index 4eea1ea1c..1615407d3 100644 --- a/entc/integration/multischema/ent/tx.go +++ b/entc/integration/multischema/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/multischema/ent/user.go b/entc/integration/multischema/ent/user.go index e506133b4..86a180d6b 100644 --- a/entc/integration/multischema/ent/user.go +++ b/entc/integration/multischema/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/multischema/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/multischema/ent/user/where.go b/entc/integration/multischema/ent/user/where.go index 68516f9ef..09848f5e6 100644 --- a/entc/integration/multischema/ent/user/where.go +++ b/entc/integration/multischema/ent/user/where.go @@ -7,10 +7,10 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/multischema/ent/user_create.go b/entc/integration/multischema/ent/user_create.go index aa5d6b705..d7a683fdf 100644 --- a/entc/integration/multischema/ent/user_create.go +++ b/entc/integration/multischema/ent/user_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/multischema/ent/user_delete.go b/entc/integration/multischema/ent/user_delete.go index 406cdf170..aed8f7955 100644 --- a/entc/integration/multischema/ent/user_delete.go +++ b/entc/integration/multischema/ent/user_delete.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/multischema/ent/user_query.go b/entc/integration/multischema/ent/user_query.go index 6521db106..e13c8c1e5 100644 --- a/entc/integration/multischema/ent/user_query.go +++ b/entc/integration/multischema/ent/user_query.go @@ -13,14 +13,14 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/multischema/ent/user_update.go b/entc/integration/multischema/ent/user_update.go index 89dea78be..9a99f7381 100644 --- a/entc/integration/multischema/ent/user_update.go +++ b/entc/integration/multischema/ent/user_update.go @@ -10,14 +10,14 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/internal" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/predicate" - "github.com/facebook/ent/entc/integration/multischema/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/internal" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/predicate" + "entgo.io/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/multischema/multischema_test.go b/entc/integration/multischema/multischema_test.go index 2c8f9089a..8053fb9ef 100644 --- a/entc/integration/multischema/multischema_test.go +++ b/entc/integration/multischema/multischema_test.go @@ -9,13 +9,13 @@ import ( "strings" "testing" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/multischema/ent" - "github.com/facebook/ent/entc/integration/multischema/ent/group" - "github.com/facebook/ent/entc/integration/multischema/ent/migrate" - "github.com/facebook/ent/entc/integration/multischema/ent/pet" - "github.com/facebook/ent/entc/integration/multischema/ent/user" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/multischema/ent" + "entgo.io/ent/entc/integration/multischema/ent/group" + "entgo.io/ent/entc/integration/multischema/ent/migrate" + "entgo.io/ent/entc/integration/multischema/ent/pet" + "entgo.io/ent/entc/integration/multischema/ent/user" "github.com/stretchr/testify/require" _ "github.com/go-sql-driver/mysql" diff --git a/entc/integration/privacy/ent/client.go b/entc/integration/privacy/ent/client.go index b2f76b9b8..eb96f8235 100644 --- a/entc/integration/privacy/ent/client.go +++ b/entc/integration/privacy/ent/client.go @@ -11,15 +11,15 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/privacy/ent/migrate" + "entgo.io/ent/entc/integration/privacy/ent/migrate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/privacy/ent/config.go b/entc/integration/privacy/ent/config.go index 18dac8034..5972b68b4 100644 --- a/entc/integration/privacy/ent/config.go +++ b/entc/integration/privacy/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/privacy/ent/ent.go b/entc/integration/privacy/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/privacy/ent/ent.go +++ b/entc/integration/privacy/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/privacy/ent/entql.go b/entc/integration/privacy/ent/entql.go index 243c405a6..d5fa71b4b 100644 --- a/entc/integration/privacy/ent/entql.go +++ b/entc/integration/privacy/ent/entql.go @@ -7,15 +7,15 @@ package ent import ( - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entql" + "entgo.io/ent/schema/field" ) // schemaGraph holds a representation of ent/schema at runtime. diff --git a/entc/integration/privacy/ent/enttest/enttest.go b/entc/integration/privacy/ent/enttest/enttest.go index b4cd8cbc5..1bd4da92b 100644 --- a/entc/integration/privacy/ent/enttest/enttest.go +++ b/entc/integration/privacy/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/privacy/ent" + "entgo.io/ent/entc/integration/privacy/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/privacy/ent/runtime" + _ "entgo.io/ent/entc/integration/privacy/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/privacy/ent/generate.go b/entc/integration/privacy/ent/generate.go index 6edfb9d86..1d5829df9 100644 --- a/entc/integration/privacy/ent/generate.go +++ b/entc/integration/privacy/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --feature privacy,entql,schema/snapshot --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --feature privacy,entql,schema/snapshot --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/privacy/ent/hook/hook.go b/entc/integration/privacy/ent/hook/hook.go index 5650147ef..7b00efbc8 100644 --- a/entc/integration/privacy/ent/hook/hook.go +++ b/entc/integration/privacy/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/privacy/ent" + "entgo.io/ent/entc/integration/privacy/ent" ) // The TaskFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/privacy/ent/internal/schema.go b/entc/integration/privacy/ent/internal/schema.go index 7df02d517..d4229c55d 100644 --- a/entc/integration/privacy/ent/internal/schema.go +++ b/entc/integration/privacy/ent/internal/schema.go @@ -9,4 +9,4 @@ // Package internal holds a loadable version of the latest schema. package internal -const Schema = `{"Schema":"github.com/facebook/ent/entc/integration/privacy/ent/schema","Package":"github.com/facebook/ent/entc/integration/privacy/ent","Schemas":[{"name":"Task","config":{"Table":""},"edges":[{"name":"teams","type":"Team"},{"name":"owner","type":"User","ref_name":"tasks","unique":true,"inverse":true}],"fields":[{"name":"title","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"description","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0}},{"name":"status","type":{"Type":6,"Ident":"task.Status","PkgPath":"","Nillable":false,"RType":null},"enums":[{"N":"planned","V":"planned"},{"N":"in_progress","V":"in_progress"},{"N":"closed","V":"closed"}],"default":true,"default_value":"planned","default_kind":24,"position":{"Index":2,"MixedIn":false,"MixinIndex":0}},{"name":"uuid","type":{"Type":4,"Ident":"uuid.UUID","PkgPath":"github.com/google/uuid","Nillable":true,"RType":null},"optional":true,"position":{"Index":3,"MixedIn":false,"MixinIndex":0}}],"hooks":[{"Index":0,"MixedIn":false,"MixinIndex":0}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":true,"MixinIndex":1},{"Index":0,"MixedIn":false,"MixinIndex":0}]},{"name":"Team","config":{"Table":""},"edges":[{"name":"tasks","type":"Task","ref_name":"teams","inverse":true},{"name":"users","type":"User","ref_name":"teams","inverse":true}],"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":false,"MixinIndex":0}]},{"name":"User","config":{"Table":""},"edges":[{"name":"teams","type":"Team"},{"name":"tasks","type":"Task"}],"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"unique":true,"immutable":true,"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"age","type":{"Type":17,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":true,"MixinIndex":1},{"Index":0,"MixedIn":false,"MixinIndex":0}]}],"Features":["privacy","entql","schema/snapshot"]}` +const Schema = `{"Schema":"entgo.io/ent/entc/integration/privacy/ent/schema","Package":"entgo.io/ent/entc/integration/privacy/ent","Schemas":[{"name":"Task","config":{"Table":""},"edges":[{"name":"teams","type":"Team"},{"name":"owner","type":"User","ref_name":"tasks","unique":true,"inverse":true}],"fields":[{"name":"title","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"description","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0}},{"name":"status","type":{"Type":6,"Ident":"task.Status","PkgPath":"","Nillable":false,"RType":null},"enums":[{"N":"planned","V":"planned"},{"N":"in_progress","V":"in_progress"},{"N":"closed","V":"closed"}],"default":true,"default_value":"planned","default_kind":24,"position":{"Index":2,"MixedIn":false,"MixinIndex":0}},{"name":"uuid","type":{"Type":4,"Ident":"uuid.UUID","PkgPath":"github.com/google/uuid","Nillable":true,"RType":null},"optional":true,"position":{"Index":3,"MixedIn":false,"MixinIndex":0}}],"hooks":[{"Index":0,"MixedIn":false,"MixinIndex":0}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":true,"MixinIndex":1},{"Index":0,"MixedIn":false,"MixinIndex":0}]},{"name":"Team","config":{"Table":""},"edges":[{"name":"tasks","type":"Task","ref_name":"teams","inverse":true},{"name":"users","type":"User","ref_name":"teams","inverse":true}],"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":false,"MixinIndex":0}]},{"name":"User","config":{"Table":""},"edges":[{"name":"teams","type":"Team"},{"name":"tasks","type":"Task"}],"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"unique":true,"immutable":true,"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"age","type":{"Type":17,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":true,"MixinIndex":1},{"Index":0,"MixedIn":false,"MixinIndex":0}]}],"Features":["privacy","entql","schema/snapshot"]}` diff --git a/entc/integration/privacy/ent/migrate/migrate.go b/entc/integration/privacy/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/privacy/ent/migrate/migrate.go +++ b/entc/integration/privacy/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/privacy/ent/migrate/schema.go b/entc/integration/privacy/ent/migrate/schema.go index 127776a6b..150cb72b8 100644 --- a/entc/integration/privacy/ent/migrate/schema.go +++ b/entc/integration/privacy/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/privacy/ent/mutation.go b/entc/integration/privacy/ent/mutation.go index 46fb34311..3c438dcef 100644 --- a/entc/integration/privacy/ent/mutation.go +++ b/entc/integration/privacy/ent/mutation.go @@ -11,13 +11,13 @@ import ( "fmt" "sync" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" "github.com/google/uuid" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/privacy/ent/predicate/predicate.go b/entc/integration/privacy/ent/predicate/predicate.go index ee060e83a..d3417feb1 100644 --- a/entc/integration/privacy/ent/predicate/predicate.go +++ b/entc/integration/privacy/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Task is the predicate function for task builders. diff --git a/entc/integration/privacy/ent/privacy/privacy.go b/entc/integration/privacy/ent/privacy/privacy.go index 309836cde..647856ca9 100644 --- a/entc/integration/privacy/ent/privacy/privacy.go +++ b/entc/integration/privacy/ent/privacy/privacy.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/privacy/ent" - "github.com/facebook/ent/entql" + "entgo.io/ent/entc/integration/privacy/ent" + "entgo.io/ent/entql" - "github.com/facebook/ent/privacy" + "entgo.io/ent/privacy" ) var ( diff --git a/entc/integration/privacy/ent/runtime.go b/entc/integration/privacy/ent/runtime.go index 0e8017485..dbd70bb38 100644 --- a/entc/integration/privacy/ent/runtime.go +++ b/entc/integration/privacy/ent/runtime.go @@ -6,4 +6,4 @@ package ent -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/privacy/ent/runtime/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/privacy/ent/runtime/runtime.go diff --git a/entc/integration/privacy/ent/runtime/runtime.go b/entc/integration/privacy/ent/runtime/runtime.go index 35d0f7a08..69a743f37 100644 --- a/entc/integration/privacy/ent/runtime/runtime.go +++ b/entc/integration/privacy/ent/runtime/runtime.go @@ -9,13 +9,13 @@ package runtime import ( "context" - "github.com/facebook/ent/entc/integration/privacy/ent/schema" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/entc/integration/privacy/ent/schema" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent" - "github.com/facebook/ent/privacy" + "entgo.io/ent" + "entgo.io/ent/privacy" ) // The init function reads all schema descriptors with runtime code diff --git a/entc/integration/privacy/ent/schema/base.go b/entc/integration/privacy/ent/schema/base.go index f22541c99..d850e7e18 100644 --- a/entc/integration/privacy/ent/schema/base.go +++ b/entc/integration/privacy/ent/schema/base.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/entc/integration/privacy/ent/privacy" - "github.com/facebook/ent/entc/integration/privacy/rule" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/entc/integration/privacy/ent/privacy" + "entgo.io/ent/entc/integration/privacy/rule" + "entgo.io/ent/schema/mixin" ) // BaseMixin for all schemas. diff --git a/entc/integration/privacy/ent/schema/task.go b/entc/integration/privacy/ent/schema/task.go index e9ff9a282..e5bf95ba0 100644 --- a/entc/integration/privacy/ent/schema/task.go +++ b/entc/integration/privacy/ent/schema/task.go @@ -5,11 +5,11 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/entc/integration/privacy/ent/privacy" - "github.com/facebook/ent/entc/integration/privacy/rule" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/entc/integration/privacy/ent/privacy" + "entgo.io/ent/entc/integration/privacy/rule" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/privacy/ent/schema/team.go b/entc/integration/privacy/ent/schema/team.go index e2e7cf2d2..8023e42a3 100644 --- a/entc/integration/privacy/ent/schema/team.go +++ b/entc/integration/privacy/ent/schema/team.go @@ -5,12 +5,12 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/entc/integration/privacy/ent/privacy" - "github.com/facebook/ent/entc/integration/privacy/rule" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/entc/integration/privacy/ent/privacy" + "entgo.io/ent/entc/integration/privacy/rule" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/mixin" ) // Team defines the schema of a team. diff --git a/entc/integration/privacy/ent/schema/user.go b/entc/integration/privacy/ent/schema/user.go index e9ceab0e8..e2988f643 100644 --- a/entc/integration/privacy/ent/schema/user.go +++ b/entc/integration/privacy/ent/schema/user.go @@ -5,11 +5,11 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/entc/integration/privacy/ent/privacy" - "github.com/facebook/ent/entc/integration/privacy/rule" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/entc/integration/privacy/ent/privacy" + "entgo.io/ent/entc/integration/privacy/rule" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User defines the schema of a user. diff --git a/entc/integration/privacy/ent/task.go b/entc/integration/privacy/ent/task.go index fed67740d..b6742d520 100644 --- a/entc/integration/privacy/ent/task.go +++ b/entc/integration/privacy/ent/task.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/user" "github.com/google/uuid" ) diff --git a/entc/integration/privacy/ent/task/task.go b/entc/integration/privacy/ent/task/task.go index 16e8cf0e6..5eddd6ee6 100644 --- a/entc/integration/privacy/ent/task/task.go +++ b/entc/integration/privacy/ent/task/task.go @@ -9,7 +9,7 @@ package task import ( "fmt" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -86,7 +86,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/entc/integration/privacy/ent/runtime" +// import _ "entgo.io/ent/entc/integration/privacy/ent/runtime" // var ( Hooks [2]ent.Hook diff --git a/entc/integration/privacy/ent/task/where.go b/entc/integration/privacy/ent/task/where.go index 3eb3eea66..aef746116 100644 --- a/entc/integration/privacy/ent/task/where.go +++ b/entc/integration/privacy/ent/task/where.go @@ -7,9 +7,9 @@ package task import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" "github.com/google/uuid" ) diff --git a/entc/integration/privacy/ent/task_create.go b/entc/integration/privacy/ent/task_create.go index 30394174d..5fbfaea4e 100644 --- a/entc/integration/privacy/ent/task_create.go +++ b/entc/integration/privacy/ent/task_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/privacy/ent/task_delete.go b/entc/integration/privacy/ent/task_delete.go index c2870a7f8..892c2c903 100644 --- a/entc/integration/privacy/ent/task_delete.go +++ b/entc/integration/privacy/ent/task_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/schema/field" ) // TaskDelete is the builder for deleting a Task entity. diff --git a/entc/integration/privacy/ent/task_query.go b/entc/integration/privacy/ent/task_query.go index 800d7db11..7c7b85518 100644 --- a/entc/integration/privacy/ent/task_query.go +++ b/entc/integration/privacy/ent/task_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" ) // TaskQuery is the builder for querying Task entities. diff --git a/entc/integration/privacy/ent/task_update.go b/entc/integration/privacy/ent/task_update.go index c5224cf52..aa602ac5a 100644 --- a/entc/integration/privacy/ent/task_update.go +++ b/entc/integration/privacy/ent/task_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" "github.com/google/uuid" ) diff --git a/entc/integration/privacy/ent/team.go b/entc/integration/privacy/ent/team.go index 3d70628a6..6444f899c 100644 --- a/entc/integration/privacy/ent/team.go +++ b/entc/integration/privacy/ent/team.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/privacy/ent/team" ) // Team is the model entity for the Team schema. diff --git a/entc/integration/privacy/ent/team/team.go b/entc/integration/privacy/ent/team/team.go index 68c4b7087..45b7c2070 100644 --- a/entc/integration/privacy/ent/team/team.go +++ b/entc/integration/privacy/ent/team/team.go @@ -7,7 +7,7 @@ package team import ( - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -66,7 +66,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/entc/integration/privacy/ent/runtime" +// import _ "entgo.io/ent/entc/integration/privacy/ent/runtime" // var ( Hooks [1]ent.Hook diff --git a/entc/integration/privacy/ent/team/where.go b/entc/integration/privacy/ent/team/where.go index bf895f610..709b57ded 100644 --- a/entc/integration/privacy/ent/team/where.go +++ b/entc/integration/privacy/ent/team/where.go @@ -7,9 +7,9 @@ package team import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/privacy/ent/team_create.go b/entc/integration/privacy/ent/team_create.go index cf41efcc2..02b2d4b8e 100644 --- a/entc/integration/privacy/ent/team_create.go +++ b/entc/integration/privacy/ent/team_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" ) // TeamCreate is the builder for creating a Team entity. diff --git a/entc/integration/privacy/ent/team_delete.go b/entc/integration/privacy/ent/team_delete.go index 17306d115..032b3dd12 100644 --- a/entc/integration/privacy/ent/team_delete.go +++ b/entc/integration/privacy/ent/team_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/schema/field" ) // TeamDelete is the builder for deleting a Team entity. diff --git a/entc/integration/privacy/ent/team_query.go b/entc/integration/privacy/ent/team_query.go index c9cc78143..1db5bcef4 100644 --- a/entc/integration/privacy/ent/team_query.go +++ b/entc/integration/privacy/ent/team_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" ) // TeamQuery is the builder for querying Team entities. diff --git a/entc/integration/privacy/ent/team_update.go b/entc/integration/privacy/ent/team_update.go index 6d97a7ba9..66907ff12 100644 --- a/entc/integration/privacy/ent/team_update.go +++ b/entc/integration/privacy/ent/team_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" ) // TeamUpdate is the builder for updating Team entities. diff --git a/entc/integration/privacy/ent/tx.go b/entc/integration/privacy/ent/tx.go index 20807ce8f..38337e7ca 100644 --- a/entc/integration/privacy/ent/tx.go +++ b/entc/integration/privacy/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/privacy/ent/user.go b/entc/integration/privacy/ent/user.go index 256e09777..191c6f1a6 100644 --- a/entc/integration/privacy/ent/user.go +++ b/entc/integration/privacy/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/privacy/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/privacy/ent/user/user.go b/entc/integration/privacy/ent/user/user.go index ed646d455..e13bc8880 100644 --- a/entc/integration/privacy/ent/user/user.go +++ b/entc/integration/privacy/ent/user/user.go @@ -7,7 +7,7 @@ package user import ( - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -68,7 +68,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/entc/integration/privacy/ent/runtime" +// import _ "entgo.io/ent/entc/integration/privacy/ent/runtime" // var ( Hooks [1]ent.Hook diff --git a/entc/integration/privacy/ent/user/where.go b/entc/integration/privacy/ent/user/where.go index f22306cfe..b77ad6eec 100644 --- a/entc/integration/privacy/ent/user/where.go +++ b/entc/integration/privacy/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/privacy/ent/user_create.go b/entc/integration/privacy/ent/user_create.go index 0e0349e00..921017993 100644 --- a/entc/integration/privacy/ent/user_create.go +++ b/entc/integration/privacy/ent/user_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/privacy/ent/user_delete.go b/entc/integration/privacy/ent/user_delete.go index c043e609a..2b5e7e6c6 100644 --- a/entc/integration/privacy/ent/user_delete.go +++ b/entc/integration/privacy/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/privacy/ent/user_query.go b/entc/integration/privacy/ent/user_query.go index 7be5e4edb..42789a646 100644 --- a/entc/integration/privacy/ent/user_query.go +++ b/entc/integration/privacy/ent/user_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/privacy/ent/user_update.go b/entc/integration/privacy/ent/user_update.go index a3f23d5be..8ec695672 100644 --- a/entc/integration/privacy/ent/user_update.go +++ b/entc/integration/privacy/ent/user_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/privacy/privacy_test.go b/entc/integration/privacy/privacy_test.go index a64b346c6..f70d8d728 100644 --- a/entc/integration/privacy/privacy_test.go +++ b/entc/integration/privacy/privacy_test.go @@ -9,11 +9,11 @@ import ( "errors" "testing" - "github.com/facebook/ent/entc/integration/privacy/ent/enttest" - "github.com/facebook/ent/entc/integration/privacy/ent/privacy" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/rule" - "github.com/facebook/ent/entc/integration/privacy/viewer" + "entgo.io/ent/entc/integration/privacy/ent/enttest" + "entgo.io/ent/entc/integration/privacy/ent/privacy" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/rule" + "entgo.io/ent/entc/integration/privacy/viewer" _ "github.com/mattn/go-sqlite3" "github.com/stretchr/testify/require" diff --git a/entc/integration/privacy/rule/rule.go b/entc/integration/privacy/rule/rule.go index d0880ee6a..b4a70df60 100644 --- a/entc/integration/privacy/rule/rule.go +++ b/entc/integration/privacy/rule/rule.go @@ -9,14 +9,14 @@ import ( "fmt" "sync" - "github.com/facebook/ent/entc/integration/privacy/ent" - "github.com/facebook/ent/entc/integration/privacy/ent/hook" - "github.com/facebook/ent/entc/integration/privacy/ent/predicate" - "github.com/facebook/ent/entc/integration/privacy/ent/privacy" - "github.com/facebook/ent/entc/integration/privacy/ent/task" - "github.com/facebook/ent/entc/integration/privacy/ent/team" - "github.com/facebook/ent/entc/integration/privacy/ent/user" - "github.com/facebook/ent/entc/integration/privacy/viewer" + "entgo.io/ent/entc/integration/privacy/ent" + "entgo.io/ent/entc/integration/privacy/ent/hook" + "entgo.io/ent/entc/integration/privacy/ent/predicate" + "entgo.io/ent/entc/integration/privacy/ent/privacy" + "entgo.io/ent/entc/integration/privacy/ent/task" + "entgo.io/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent/user" + "entgo.io/ent/entc/integration/privacy/viewer" ) // DenyUpdateRule is a mutation rule that denies the update-many operation. diff --git a/entc/integration/privacy/viewer/viewer.go b/entc/integration/privacy/viewer/viewer.go index 0cd11b292..bb881db31 100644 --- a/entc/integration/privacy/viewer/viewer.go +++ b/entc/integration/privacy/viewer/viewer.go @@ -7,8 +7,8 @@ package viewer import ( "context" - "github.com/facebook/ent/entc/integration/privacy/ent" - "github.com/facebook/ent/entc/integration/privacy/ent/team" + "entgo.io/ent/entc/integration/privacy/ent" + "entgo.io/ent/entc/integration/privacy/ent/team" ) // Role for viewer actions. diff --git a/entc/integration/relation_test.go b/entc/integration/relation_test.go index 3668c58aa..d7c6ca5dd 100644 --- a/entc/integration/relation_test.go +++ b/entc/integration/relation_test.go @@ -10,12 +10,12 @@ import ( "testing" "time" - "github.com/facebook/ent/entc/integration/ent" - "github.com/facebook/ent/entc/integration/ent/card" - "github.com/facebook/ent/entc/integration/ent/group" - "github.com/facebook/ent/entc/integration/ent/node" - "github.com/facebook/ent/entc/integration/ent/pet" - "github.com/facebook/ent/entc/integration/ent/user" + "entgo.io/ent/entc/integration/ent" + "entgo.io/ent/entc/integration/ent/card" + "entgo.io/ent/entc/integration/ent/group" + "entgo.io/ent/entc/integration/ent/node" + "entgo.io/ent/entc/integration/ent/pet" + "entgo.io/ent/entc/integration/ent/user" "github.com/stretchr/testify/require" ) diff --git a/entc/integration/template/ent/client.go b/entc/integration/template/ent/client.go index cf3614df2..87a4c21b0 100644 --- a/entc/integration/template/ent/client.go +++ b/entc/integration/template/ent/client.go @@ -11,15 +11,15 @@ import ( "fmt" "log" - "github.com/facebook/ent/entc/integration/template/ent/migrate" + "entgo.io/ent/entc/integration/template/ent/migrate" - "github.com/facebook/ent/entc/integration/template/ent/group" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/user" + "entgo.io/ent/entc/integration/template/ent/group" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/entc/integration/template/ent/config.go b/entc/integration/template/ent/config.go index c16a4b0aa..79577ae27 100644 --- a/entc/integration/template/ent/config.go +++ b/entc/integration/template/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/entc/integration/template/ent/ent.go b/entc/integration/template/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/entc/integration/template/ent/ent.go +++ b/entc/integration/template/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/entc/integration/template/ent/enttest/enttest.go b/entc/integration/template/ent/enttest/enttest.go index b8a3c8d9c..bc04d4c16 100644 --- a/entc/integration/template/ent/enttest/enttest.go +++ b/entc/integration/template/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/entc/integration/template/ent" + "entgo.io/ent/entc/integration/template/ent" // required by schema hooks. - _ "github.com/facebook/ent/entc/integration/template/ent/runtime" + _ "entgo.io/ent/entc/integration/template/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/entc/integration/template/ent/generate.go b/entc/integration/template/ent/generate.go index 0f1f100f3..61ea579a1 100644 --- a/entc/integration/template/ent/generate.go +++ b/entc/integration/template/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --template=./template --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --template=./template --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/entc/integration/template/ent/group.go b/entc/integration/template/ent/group.go index c0aa3627e..21d0279e8 100644 --- a/entc/integration/template/ent/group.go +++ b/entc/integration/template/ent/group.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/template/ent/group" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/template/ent/group" ) // Group is the model entity for the Group schema. diff --git a/entc/integration/template/ent/group/where.go b/entc/integration/template/ent/group/where.go index ad15d2b84..5b39eb93f 100644 --- a/entc/integration/template/ent/group/where.go +++ b/entc/integration/template/ent/group/where.go @@ -7,8 +7,8 @@ package group import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/template/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/template/ent/group_create.go b/entc/integration/template/ent/group_create.go index 072b1cb86..48b7d792c 100644 --- a/entc/integration/template/ent/group_create.go +++ b/entc/integration/template/ent/group_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/group" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/group" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/entc/integration/template/ent/group_delete.go b/entc/integration/template/ent/group_delete.go index 3a058dc75..3e978e943 100644 --- a/entc/integration/template/ent/group_delete.go +++ b/entc/integration/template/ent/group_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/group" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/group" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/entc/integration/template/ent/group_query.go b/entc/integration/template/ent/group_query.go index a9a1d2f88..db8080929 100644 --- a/entc/integration/template/ent/group_query.go +++ b/entc/integration/template/ent/group_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/group" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/group" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/entc/integration/template/ent/group_update.go b/entc/integration/template/ent/group_update.go index d2bece688..19dd6f94d 100644 --- a/entc/integration/template/ent/group_update.go +++ b/entc/integration/template/ent/group_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/group" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/group" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/entc/integration/template/ent/hook/hook.go b/entc/integration/template/ent/hook/hook.go index 86d7bad14..3c0aff363 100644 --- a/entc/integration/template/ent/hook/hook.go +++ b/entc/integration/template/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/entc/integration/template/ent" + "entgo.io/ent/entc/integration/template/ent" ) // The GroupFunc type is an adapter to allow the use of ordinary diff --git a/entc/integration/template/ent/migrate/migrate.go b/entc/integration/template/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/entc/integration/template/ent/migrate/migrate.go +++ b/entc/integration/template/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/entc/integration/template/ent/migrate/schema.go b/entc/integration/template/ent/migrate/schema.go index bbadc3071..fd2bf40ba 100644 --- a/entc/integration/template/ent/migrate/schema.go +++ b/entc/integration/template/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/entc/integration/template/ent/mutation.go b/entc/integration/template/ent/mutation.go index 5de81db3b..bc633358c 100644 --- a/entc/integration/template/ent/mutation.go +++ b/entc/integration/template/ent/mutation.go @@ -12,12 +12,12 @@ import ( "sync" "time" - "github.com/facebook/ent/entc/integration/template/ent/group" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/entc/integration/template/ent/user" + "entgo.io/ent/entc/integration/template/ent/group" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/entc/integration/template/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/entc/integration/template/ent/node.go b/entc/integration/template/ent/node.go index a5c5152c2..dd680ad0d 100644 --- a/entc/integration/template/ent/node.go +++ b/entc/integration/template/ent/node.go @@ -13,11 +13,11 @@ import ( "sync" "sync/atomic" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/entc/integration/template/ent/group" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/entc/integration/template/ent/group" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/user" "golang.org/x/sync/semaphore" ) diff --git a/entc/integration/template/ent/pet.go b/entc/integration/template/ent/pet.go index e313fa127..eca312bf5 100644 --- a/entc/integration/template/ent/pet.go +++ b/entc/integration/template/ent/pet.go @@ -10,9 +10,9 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/user" ) // Pet is the model entity for the Pet schema. diff --git a/entc/integration/template/ent/pet/where.go b/entc/integration/template/ent/pet/where.go index aa92aff36..0ca784b46 100644 --- a/entc/integration/template/ent/pet/where.go +++ b/entc/integration/template/ent/pet/where.go @@ -9,9 +9,9 @@ package pet import ( "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/template/ent/pet_create.go b/entc/integration/template/ent/pet_create.go index 2a8d87dbb..6ad387a20 100644 --- a/entc/integration/template/ent/pet_create.go +++ b/entc/integration/template/ent/pet_create.go @@ -12,10 +12,10 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/user" + "entgo.io/ent/schema/field" ) // PetCreate is the builder for creating a Pet entity. diff --git a/entc/integration/template/ent/pet_delete.go b/entc/integration/template/ent/pet_delete.go index eb9366684..faf07b016 100644 --- a/entc/integration/template/ent/pet_delete.go +++ b/entc/integration/template/ent/pet_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/schema/field" ) // PetDelete is the builder for deleting a Pet entity. diff --git a/entc/integration/template/ent/pet_query.go b/entc/integration/template/ent/pet_query.go index 67abc4856..c87e1708b 100644 --- a/entc/integration/template/ent/pet_query.go +++ b/entc/integration/template/ent/pet_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/entc/integration/template/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/entc/integration/template/ent/user" + "entgo.io/ent/schema/field" ) // PetQuery is the builder for querying Pet entities. diff --git a/entc/integration/template/ent/pet_update.go b/entc/integration/template/ent/pet_update.go index a15c0c880..311cec29f 100644 --- a/entc/integration/template/ent/pet_update.go +++ b/entc/integration/template/ent/pet_update.go @@ -11,12 +11,12 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/entc/integration/template/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/entc/integration/template/ent/user" + "entgo.io/ent/schema/field" ) // PetUpdate is the builder for updating Pet entities. diff --git a/entc/integration/template/ent/predicate/predicate.go b/entc/integration/template/ent/predicate/predicate.go index e4dcce964..f7df68c4a 100644 --- a/entc/integration/template/ent/predicate/predicate.go +++ b/entc/integration/template/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Group is the predicate function for group builders. diff --git a/entc/integration/template/ent/runtime/runtime.go b/entc/integration/template/ent/runtime/runtime.go index b2e5e465b..3509cc00b 100644 --- a/entc/integration/template/ent/runtime/runtime.go +++ b/entc/integration/template/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/entc/integration/template/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/entc/integration/template/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/entc/integration/template/ent/schema/group.go b/entc/integration/template/ent/schema/group.go index bd64682ef..152ce509d 100644 --- a/entc/integration/template/ent/schema/group.go +++ b/entc/integration/template/ent/schema/group.go @@ -5,8 +5,8 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // Group holds the schema definition for the Group entity. diff --git a/entc/integration/template/ent/schema/pet.go b/entc/integration/template/ent/schema/pet.go index a85778c87..886f1f5a8 100644 --- a/entc/integration/template/ent/schema/pet.go +++ b/entc/integration/template/ent/schema/pet.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Pet holds the schema definition for the Pet entity. diff --git a/entc/integration/template/ent/schema/user.go b/entc/integration/template/ent/schema/user.go index 5ca52125b..b97826be1 100644 --- a/entc/integration/template/ent/schema/user.go +++ b/entc/integration/template/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/entc/integration/template/ent/template/config.tmpl b/entc/integration/template/ent/template/config.tmpl index d0a6114d9..9c78a136d 100644 --- a/entc/integration/template/ent/template/config.tmpl +++ b/entc/integration/template/ent/template/config.tmpl @@ -11,4 +11,4 @@ c.Boring = "Boring" } } -{{ end }} \ No newline at end of file +{{ end }} diff --git a/entc/integration/template/ent/template/node.tmpl b/entc/integration/template/ent/template/node.tmpl index d4f066840..1ddda5b2a 100644 --- a/entc/integration/template/ent/template/node.tmpl +++ b/entc/integration/template/ent/template/node.tmpl @@ -9,8 +9,8 @@ in the LICENSE file in the root directory of this source tree. {{ template "header" $ }} import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/schema" "golang.org/x/sync/semaphore" ) diff --git a/entc/integration/template/ent/template/stringer.tmpl b/entc/integration/template/ent/template/stringer.tmpl index 7cc09ecde..5e720e289 100644 --- a/entc/integration/template/ent/template/stringer.tmpl +++ b/entc/integration/template/ent/template/stringer.tmpl @@ -40,4 +40,4 @@ return builder.String() } {{- end}} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/entc/integration/template/ent/tx.go b/entc/integration/template/ent/tx.go index 4eea1ea1c..1615407d3 100644 --- a/entc/integration/template/ent/tx.go +++ b/entc/integration/template/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/entc/integration/template/ent/user.go b/entc/integration/template/ent/user.go index da3d095fd..8b719f7dd 100644 --- a/entc/integration/template/ent/user.go +++ b/entc/integration/template/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/template/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/template/ent/user" ) // User is the model entity for the User schema. diff --git a/entc/integration/template/ent/user/where.go b/entc/integration/template/ent/user/where.go index 39f895f4a..c73708340 100644 --- a/entc/integration/template/ent/user/where.go +++ b/entc/integration/template/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/entc/integration/template/ent/user_create.go b/entc/integration/template/ent/user_create.go index 2654a46c0..7517ac159 100644 --- a/entc/integration/template/ent/user_create.go +++ b/entc/integration/template/ent/user_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/entc/integration/template/ent/user_delete.go b/entc/integration/template/ent/user_delete.go index 3a938d3d6..62f084d8b 100644 --- a/entc/integration/template/ent/user_delete.go +++ b/entc/integration/template/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/entc/integration/template/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/entc/integration/template/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/entc/integration/template/ent/user_query.go b/entc/integration/template/ent/user_query.go index 2f4b162a8..ed038622d 100644 --- a/entc/integration/template/ent/user_query.go +++ b/entc/integration/template/ent/user_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/entc/integration/template/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/entc/integration/template/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/entc/integration/template/ent/user_update.go b/entc/integration/template/ent/user_update.go index 05ceeba8a..4d355e319 100644 --- a/entc/integration/template/ent/user_update.go +++ b/entc/integration/template/ent/user_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entc/integration/template/ent/pet" - "github.com/facebook/ent/entc/integration/template/ent/predicate" - "github.com/facebook/ent/entc/integration/template/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entc/integration/template/ent/pet" + "entgo.io/ent/entc/integration/template/ent/predicate" + "entgo.io/ent/entc/integration/template/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/entc/integration/template/template_test.go b/entc/integration/template/template_test.go index 8ed906d88..55c337d37 100644 --- a/entc/integration/template/template_test.go +++ b/entc/integration/template/template_test.go @@ -9,9 +9,9 @@ import ( "reflect" "testing" - "github.com/facebook/ent/entc/integration/template/ent" - "github.com/facebook/ent/entc/integration/template/ent/migrate" - "github.com/facebook/ent/entc/integration/template/ent/user" + "entgo.io/ent/entc/integration/template/ent" + "entgo.io/ent/entc/integration/template/ent/migrate" + "entgo.io/ent/entc/integration/template/ent/user" _ "github.com/mattn/go-sqlite3" "github.com/stretchr/testify/require" diff --git a/entc/integration/type_test.go b/entc/integration/type_test.go index 7a0bf97d5..f71f28f41 100644 --- a/entc/integration/type_test.go +++ b/entc/integration/type_test.go @@ -13,12 +13,12 @@ import ( "testing" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/entc/integration/ent" - "github.com/facebook/ent/entc/integration/ent/fieldtype" - "github.com/facebook/ent/entc/integration/ent/role" - "github.com/facebook/ent/entc/integration/ent/schema" - "github.com/facebook/ent/entc/integration/ent/task" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/entc/integration/ent" + "entgo.io/ent/entc/integration/ent/fieldtype" + "entgo.io/ent/entc/integration/ent/role" + "entgo.io/ent/entc/integration/ent/schema" + "entgo.io/ent/entc/integration/ent/task" "github.com/stretchr/testify/require" ) diff --git a/entc/internal/snapshot.go b/entc/internal/snapshot.go index c2fe6e47c..54ccf2630 100644 --- a/entc/internal/snapshot.go +++ b/entc/internal/snapshot.go @@ -11,8 +11,8 @@ import ( "io/ioutil" "strings" - "github.com/facebook/ent/entc/gen" - "github.com/facebook/ent/entc/load" + "entgo.io/ent/entc/gen" + "entgo.io/ent/entc/load" ) // Snapshot describes the schema snapshot restore. diff --git a/entc/internal/snapshot_test.go b/entc/internal/snapshot_test.go index 1f6a8dcbb..ec41bc340 100644 --- a/entc/internal/snapshot_test.go +++ b/entc/internal/snapshot_test.go @@ -13,7 +13,7 @@ import ( "testing" "time" - "github.com/facebook/ent/entc/gen" + "entgo.io/ent/entc/gen" "github.com/stretchr/testify/require" ) diff --git a/entc/load/internal/bindata.go b/entc/load/internal/bindata.go index 2fa0baf04..1c315766f 100644 --- a/entc/load/internal/bindata.go +++ b/entc/load/internal/bindata.go @@ -98,7 +98,7 @@ func templateMainTmpl() (*asset, error) { return a, nil } -var _schemaGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x5f\x6f\xdb\x46\x12\x7f\x96\x3e\xc5\xd4\x40\x0d\x32\x50\xe9\x5e\x51\x14\x77\xca\xe9\x80\x22\x4d\x50\x5f\x2f\x6e\xd0\x24\x7d\x31\x0c\x97\x26\x87\xd6\xc6\xe4\x52\x5d\xae\x1c\xbb\xae\xbf\xfb\x61\x67\x76\x97\x4b\x8a\x94\x14\xff\xc9\x4b\xc4\xd9\x99\xd9\x99\x1f\xe7\xdf\x2e\x7d\x74\x04\xaf\xea\xd5\xad\x12\x97\x4b\x0d\xdf\x7d\xfb\x8f\x7f\x7d\xb3\x52\xd8\xa0\xd4\xf0\x26\xcd\xf0\xa2\xae\xaf\xe0\x58\x66\x09\xfc\x58\x96\x40\x4c\x0d\x98\x75\x75\x8d\x79\x32\x3d\x3a\x82\x0f\x4b\xd1\x40\x53\xaf\x55\x86\x90\xd5\x39\x82\x68\xa0\x14\x19\xca\x06\x73\x58\xcb\x1c\x15\xe8\x25\xc2\x8f\xab\x34\x5b\x22\x7c\x97\x7c\xeb\x56\xa1\xa8\xd7\x32\x37\x2a\x84\x24\x96\xff\x1d\xbf\x7a\x7d\xf2\xfe\x35\x14\xa2\x44\x47\x53\x75\xad\x21\x17\x0a\x33\x5d\xab\x5b\xa8\x0b\xd0\xc1\x7e\x5a\x21\x26\xd3\xe9\x2a\xcd\xae\xd2\x4b\x84\xb2\x4e\xf3\xe9\x54\x54\xab\x5a\x69\x88\xa6\x93\x03\x94\x59\x9d\x0b\x79\x79\xf4\xa9\xa9\xe5\xc1\x74\x72\x50\x54\xda\xfc\xa7\xb0\x28\x31\xd3\x07\xd3\xe9\xe4\xe0\x52\xe8\xe5\xfa\x22\xc9\xea\xea\xa8\xb0\x0e\x1f\xa1\x24\xb6\x91\xa5\xa3\x26\x5b\x62\x95\xee\xe6\x38\xc2\xfc\x12\xf7\x60\x2b\x04\x96\xf9\x1e\x7c\x42\xe6\x78\x73\x30\x8d\xa7\x06\xb4\xf7\x44\x03\x85\xf6\x75\x35\x90\x4a\x40\xa9\x13\xbb\xa0\x97\xa9\x86\xcf\x69\x43\xa8\x60\x0e\x85\xaa\x2b\x48\x21\xab\xab\x55\x29\xcc\xab\x69\x50\x81\x45\x2e\x99\xea\xdb\x15\x3a\x95\x8d\x56\xeb\x4c\xc3\xdd\x74\x72\x92\x56\x08\xf6\x5f\xa3\x95\x90\x97\xd0\xff\xf7\x87\x81\x76\x7e\x20\xd3\x0a\x67\x75\x25\x34\x56\x2b\x7d\x7b\xf0\xc7\x74\xf2\xaa\x96\x85\xb0\xfc\xc6\xac\xf0\xb9\x2b\x9b\xd1\x4a\x57\xfa\x75\x7e\x89\x8d\x65\x3b\x3d\x7b\x61\x1e\x47\x76\x36\x18\x37\x5d\xe1\x37\x06\xcf\xc6\x0b\xd3\xe3\xb0\x30\x21\xdf\x93\x3e\x36\x28\xdb\xcd\x4f\xcf\x5e\xd0\xe3\xb0\xb4\x60\xce\xae\xf8\xcf\x75\x7d\x15\x58\xfe\xae\x6e\x84\x16\xb5\x1c\x10\x5f\x1a\xce\xae\xf0\xbb\xba\x14\xd9\xed\x3e\xc2\x2b\xe2\xec\x4a\xff\x28\x65\xad\x53\x23\xd0\x40\x95\xae\x4e\xf9\x95\x9d\x09\xa9\x51\x99\x78\xba\xbb\x77\xd2\x69\xcb\xd9\x51\x71\x4f\xa1\xe5\xb7\xcd\xb1\xc9\x94\xb8\xc0\x06\x52\x58\x39\xa2\xcd\x4c\x8e\x49\x1b\x39\x5e\xa2\x8d\x9d\x00\x37\x21\x35\xc0\xd1\x11\x30\xc9\xca\x13\xf4\x47\x06\x03\x28\x45\xa3\x93\xe9\xe4\xad\xb8\xc1\xfc\x98\x9c\xbd\xa8\xeb\xd2\x4a\x88\x2c\xd5\xd8\x80\x28\x82\x5d\xa1\xbe\xf8\x84\x19\x87\x77\x65\xa4\xbe\x11\x92\x15\x08\xe9\x36\xe1\x2d\x89\x04\x22\xdc\xb8\x22\x12\xef\xc9\xfe\x72\x80\x6c\x66\x12\xd3\x1f\x90\x48\x2c\x38\x9c\x47\xa3\x99\x34\x9e\x4a\xc7\xb2\xa8\x5b\xb6\x17\x84\x5c\xf2\xe1\x76\x85\x9d\x05\x2b\x6e\x0c\xe8\x8a\x7f\x48\xc3\xcd\x76\xec\xae\xd3\x5e\x26\xbe\x17\x7f\x05\xb6\xbf\x10\x52\xff\xf0\xfd\xa8\x74\x23\xfe\xea\x6d\xfe\x5a\xae\xab\xc6\xb3\x9d\x9e\x31\x28\x77\x70\x32\x83\xdf\x9d\x2d\x3e\x2c\xd1\x30\x77\xe5\x3f\x4a\xf1\xe7\xda\x1b\x40\x71\x31\xf0\xcf\xca\xaf\x89\xb9\xab\xe0\x44\x94\x65\x7a\x51\xe2\x5e\x0a\xa4\x65\xee\xaa\xf8\x75\x65\x62\x3b\x2d\xf7\x52\x51\x5b\xe6\xae\x8a\x9f\xb0\x48\xd7\xa5\xde\xcf\x8d\x9c\x99\x07\x35\xfc\x9e\x96\x06\x8e\x30\xa7\xc7\x35\x9c\x5f\x1b\xee\x41\x3d\xbf\x08\x69\x6a\xa2\xed\x84\x89\x7d\x1c\xd3\x73\x25\x64\xde\x7b\x2f\xab\x3c\xd5\xe8\xdc\xda\xf5\x5e\x88\xf9\x7c\xd0\xaf\xe3\xaa\x5a\x6b\xff\x82\x76\x28\x12\x8e\xb9\xab\xe3\xf7\xb4\x14\x79\xaa\x6b\x45\x91\x46\xb9\x3f\xae\xe3\xda\x33\xf7\x02\x5d\xd7\x2a\xbd\xc4\x5f\x90\xea\xef\x8e\x34\x69\x98\xf9\xfc\x0a\x6f\xfb\x15\x3c\x2c\xd9\x83\x15\x3c\x2c\xe2\xbc\xda\x33\x04\xa5\x21\x5f\xef\x85\x48\xe3\x98\x7b\x3a\xa8\x4e\x9a\x1a\x61\x78\x83\x66\xd0\xf1\xcb\xe9\x20\xe6\xf3\xcd\xca\x11\x36\x14\x18\x6b\x29\xbb\x7a\xca\xe4\x55\x5d\x55\xe8\xdf\xc9\x0e\x60\x33\x66\x1e\xe8\x4a\x34\x03\x6c\x16\x69\x22\x3f\xa0\x46\x93\xdc\xd3\x8c\x3a\x0e\xe6\xdd\xb2\xdb\x8b\xf3\x0e\xd9\x7e\x65\xfe\x0d\x0b\x6f\xf5\x76\x51\x85\xc5\xf9\xa6\xd9\xbf\x61\xe1\x19\x07\x27\xac\x50\x7e\xbc\x2a\x8f\x04\xe8\x96\x92\x7c\x2c\xaf\x51\x35\x5b\xc3\xdb\x4f\x58\xc4\xd9\xb7\xfb\xcf\xb5\x50\x98\xef\x16\x57\x96\x73\x3c\xd1\x5f\x98\xf1\x31\xe9\xa6\xfe\x1e\x59\xfe\x54\x93\x16\x0f\x2b\x9b\x41\xcd\xf4\x07\x44\x35\x0b\xb6\x61\x1d\xbc\x28\x0f\xd5\x96\x37\x13\x8c\xdd\xa7\xae\x54\xec\x35\x67\xf7\xb9\x87\x06\xeb\x00\x65\x1f\xae\x3b\x80\x66\x94\x4e\xf0\x33\x85\x67\xa6\x90\x66\xc1\x54\x3a\x44\x8c\x51\x0c\x0b\xfd\xe2\x79\x75\xa5\x6b\x95\x4c\x8b\xb5\xcc\x9c\x64\x84\xb9\x7d\xd3\x3f\x79\x8e\xd8\xc6\xfc\xdd\x74\x22\x11\xe6\x0b\x38\x34\x8f\x77\xd3\x89\x49\xc9\xb9\x8f\x24\xcc\x93\x0f\xe9\xe5\xcc\x90\x6f\x57\x38\x0f\xc9\x26\x97\xa7\x13\xaa\x1c\x21\xdd\x3c\x1b\x3a\x43\x3f\xf7\x74\x7e\x36\x2b\x36\xfe\xe7\x6e\xc5\x3e\x9b\x25\x17\xdb\x73\xbb\xe4\x9e\x79\xad\x68\xf7\xa2\xb5\xc2\xed\xd5\x42\x3b\xa7\xa5\xf6\xd9\xac\x06\xd1\x3a\x87\x2a\xbd\xc2\x68\x38\x66\xe3\xd9\x74\x72\x3f\x9d\x14\xb5\x82\xf3\x19\xa4\xda\xa0\xa2\x52\x79\x89\x46\x65\x18\xf2\x06\x25\x89\x49\x9a\xe7\x2d\x35\x4a\x75\x4c\xe2\xa2\x30\x53\x85\x91\x65\x1b\x5f\xd2\xe3\x57\x0b\x90\xa2\x74\x92\xa6\xf4\x2c\xfc\xdb\x51\x58\xc4\x4c\x0f\x42\x64\x01\xcc\x17\xd0\x48\xbd\x42\xbd\x56\x12\x24\xb6\xc1\xc1\xe3\xb6\x8f\x0e\x9f\x2e\x44\xa6\xe8\xe0\x9f\x43\xe1\x41\xb2\x51\x91\xbb\xb1\x3a\x0c\x90\x88\x8f\x8e\x33\x40\xa5\xcc\xf3\x1d\x39\x57\xe4\xc9\x6b\xa5\x42\x87\x9c\x49\xa2\x9c\x41\x51\x69\xb3\x5c\xab\x22\xe2\x24\x80\xaf\xff\x9c\xc3\xd7\xd7\x07\x33\x23\x48\xef\xcb\x6a\x60\xb4\x1a\x42\xea\x90\x36\xba\xeb\x47\x13\x78\x19\x8a\x9a\xa2\xee\xae\x18\xca\xac\x1f\xb0\xb4\x62\x43\x96\x86\xef\x79\xb8\x40\x94\x8d\xe8\xa4\xa5\x36\x3e\xdd\xc8\x3c\x6f\x6d\x70\x73\xf1\x74\xe2\xa7\xe1\x76\xd5\x51\xcc\xaa\x9d\x08\xe7\xad\x5e\x37\x23\x32\x60\xb4\x77\x38\x3b\xce\x69\xef\xce\x34\xd9\x72\xfa\xe1\x70\xee\x7d\xf6\x13\x60\x3f\xec\x69\xb9\x1b\xf8\xed\x5c\x48\xeb\x25\xca\xa8\xc8\x93\x96\x1a\x93\x12\x37\x41\xf9\x3d\x3c\x85\x96\xfd\x24\xe5\xf7\xf0\x94\x8d\xe4\x82\x5d\xe9\xe5\x86\xa1\x00\x1f\x4b\x19\xcd\xbd\x62\x33\xf7\x9a\x62\x3c\xf7\x9a\x82\xe2\x02\x16\xbb\xe3\xb3\x12\x4d\x63\xca\x30\x75\x0e\x61\x84\xcc\xf6\x2e\x6a\x0f\x66\x46\x97\x89\xbe\x56\xb7\x39\x0b\xce\x17\x40\x87\x40\x03\xa5\x39\x1c\xc6\x2f\x99\xfe\xd5\x02\xbe\x75\xd6\xd1\xa1\x71\x01\x87\x66\x21\x30\xcc\xbd\x60\xcb\x15\x1e\x45\x16\xfe\x28\x62\x80\xfd\xb5\x88\xda\xc8\x89\xe9\x74\x12\xb1\x15\xa6\x69\xf2\x55\x80\x3d\x4d\x00\x9d\x71\x20\x4b\x25\x5c\x20\xd0\x8d\x1f\xe6\xa0\x6b\xe2\xb9\x44\x89\x2a\xa5\x84\x37\x92\x6f\x6a\x05\x78\x93\x56\xab\x12\x67\x20\x6b\x0d\x29\x98\x3a\x40\x03\x7a\x29\xae\x10\xb4\xa8\x30\x39\xa9\x3f\x27\x64\xf1\x39\x65\xbe\x71\xd8\x74\xa9\xe4\x6d\xaa\x9a\x65\x5a\x86\x96\xbd\x24\x86\x00\xea\xd6\x2b\x3e\xa8\x2d\x82\x0c\x08\xcb\x57\x53\xcc\x8c\x4c\x5b\xc3\xb8\x71\x6f\x76\x38\xbe\xba\xa0\x22\xc6\x3f\x87\x8a\x18\x09\x47\x22\xbf\x31\xe7\xf3\x1c\x6f\xba\x6d\x8e\x55\xdf\xf9\xbd\x0f\x89\x60\xac\xa5\x76\x6f\x43\x51\xe4\x37\x34\x4b\x53\x75\xe0\xce\x3e\xf7\x0b\xfc\xdc\xaf\x1b\x66\xa5\xad\x1a\x61\x32\x9a\x95\x4e\x2a\xde\x5b\x4f\x2d\x86\xf6\xa6\x91\xdf\x16\xbd\xa9\xe0\xe6\xd2\xa7\x8c\xf9\x55\x43\x0a\xff\x7d\xff\xeb\x89\x11\xa6\x79\xc8\xbe\xe8\x1c\xf9\x45\x13\x8b\x51\xf0\xbe\x73\x33\xc4\xff\x59\x84\x3a\x9b\x46\x8d\xdb\xdb\x8c\x59\x76\xa7\x18\xa2\x0b\x38\x3d\xbb\xb8\xd5\xc8\xef\xbc\xad\xf8\x0d\xd5\x67\x96\xbd\xa3\x04\x96\x85\x70\xf5\xd6\x5e\x82\x31\x2d\x8a\x37\xc6\x01\x21\xf9\xee\x3a\xea\x05\x37\xcb\xc5\x31\xa5\x17\xcb\x7d\x61\x93\x16\x85\x8b\xcd\x26\x31\xa1\x42\x17\x5d\x4e\x2f\x87\xe5\x1e\x1d\xca\x62\xe1\x5b\x54\x63\x3b\x14\xba\xf6\xd4\x5e\x34\x07\x83\x2c\xd4\xd7\xa8\x94\xc8\xd1\x5f\xbe\x85\xab\xc9\x60\x15\xb3\x48\x05\x5e\x46\x31\x67\xcc\x78\x29\xeb\x38\xc8\x21\xf8\xf4\x1e\xf2\x5c\xeb\xf7\x4a\x0b\xa4\x2c\x70\x1b\x79\x43\x9e\x62\x2f\x8b\x0b\x86\x83\x95\x19\xb8\x19\x07\x1e\xbe\x17\x90\xae\x56\x28\xf3\xc8\x12\x66\xed\x10\x1b\xa4\x75\x14\xc7\x16\x26\x7b\x07\x1d\x3a\x60\x6f\xb0\x9f\xd3\x05\x53\x6b\xbc\x13\xd6\x06\xeb\x86\xbb\x3f\x0f\x1c\x39\x76\x46\x86\xb5\x6a\xd0\x9b\xde\x4b\xa7\xcb\xf4\xa7\x7f\xe7\xfd\x6d\xf8\xda\xfd\xe9\xf7\xb1\x82\x9d\xee\xd1\xc4\xb6\x14\x7e\x94\x55\xa7\x18\x72\x45\x6b\xb8\x6f\x89\x6b\x94\x70\xb1\x2e\x0a\x54\x40\x35\xd0\xb6\x03\x77\xeb\x4e\x75\xad\xa7\x21\xba\x58\x17\xb6\x88\x99\xd9\x95\x89\xb3\xb1\x52\xd6\x81\x81\x2c\xf4\xea\x8c\xa2\x19\x34\xdb\x81\x40\xa5\xc2\x80\x28\x82\x54\xb7\xed\x82\x44\xda\x3d\x8a\xc4\x76\xec\x26\xda\xd4\xbc\xa9\xda\xe8\x0e\xfa\x65\xd8\x2e\x7d\xbd\xa3\x5f\x8d\xbd\xd1\xd7\xb5\xfb\x3a\xc0\x07\xc2\xb0\xbe\x5b\xc0\xa2\x06\x2c\x2c\x31\xf4\x8b\x66\xbf\x21\x10\x6c\xc6\x36\xd2\xde\xc9\xaf\x4e\xad\xdd\x92\x5d\x21\x44\x62\x06\x55\x90\x32\x6c\x32\x9d\x86\xd2\xca\xce\x54\xc3\xad\xa2\xba\xf1\x6d\x62\x3a\x99\xd8\x73\x75\x68\x8d\x2d\x8c\xd5\x4d\xdc\xc2\x3d\x80\x6c\x77\xf0\x33\xbb\xfb\xb8\x95\x41\xd4\x1a\x7b\xc9\xe0\x4f\x9d\x77\x5a\xb4\x6f\x74\x62\x66\x17\xbb\x7f\x7b\x80\xea\x66\xb3\x61\x1b\x30\xe5\x4b\x6d\x21\x63\xcc\x4c\xe5\xaf\x51\x17\x70\xe8\x7e\xb3\x46\x2a\x27\xb6\xdf\x7e\x9a\x11\xc9\x7e\x47\x22\xa2\x56\x3c\x9c\x4c\x82\x8f\x43\x73\x10\xb3\x56\xb9\x0b\xd6\xa0\x5c\xd9\x69\x07\x9a\xc2\x01\x32\xd6\x24\x9e\x1a\xf4\xb1\xe6\xf0\xa0\xee\x40\x5a\xb7\xf5\x87\x67\xb0\x7e\xb4\x2f\x3c\xa6\x31\xd0\x06\xfc\xb5\x34\x74\x83\x9b\xc3\x93\xc7\x7d\x6b\x3f\x6d\xe9\xac\xe7\xef\xba\x81\xed\x3f\xb3\x41\x4f\x18\x8f\xce\x0c\xfb\x6d\x37\xf4\xd5\x76\xa8\xa7\x74\x56\x14\xc0\x1b\x75\x14\x35\x89\xfd\x06\x1d\x78\xfa\xce\xda\xd3\x73\xf5\x8b\xfd\x1a\x18\x0b\xab\x9b\x81\x91\x70\x78\x26\xec\x36\x84\x6e\x37\xb0\x39\xcc\xed\x80\x0f\xb0\x0f\x68\x07\x9d\x11\x73\xb4\x1f\x8c\x97\xe0\x2f\xee\x08\xc3\x05\x76\xbf\xfa\x3a\x1e\x04\xbe\x7d\x8e\x56\x4e\xf7\x7a\x88\x67\x57\x01\xdc\xc0\x7c\x10\xbb\x70\x52\x1b\x85\x6e\x2c\x87\xbf\x10\xb8\xa1\x0c\xdd\x37\x41\x7d\x7e\x72\x6c\xfa\x18\x2e\xd2\x92\x6f\x60\xef\xf7\x76\xb9\x33\x35\x8e\xfa\x3c\x9e\xcc\xfb\x7b\x3d\x98\xaa\xfb\x65\xea\x7e\xee\xf4\xd2\x4d\x6e\x1e\xd7\x28\x33\xb3\xb5\x52\x33\xa8\xaf\x78\x72\x0e\x12\xf7\x34\x95\x76\x46\x39\x23\x6b\xbf\xaa\xaf\xac\x8d\xc3\x4c\xc6\x66\xe9\xfd\x74\x3e\x56\x4e\xb7\xd9\x27\xb1\xf8\x24\x6f\x51\x5d\xa2\x8a\x5f\xc2\x6e\x9d\x15\x33\x47\xa9\x8c\xed\x95\x03\x7b\x8a\x7c\xd7\xff\x20\x3f\x71\x1f\x3f\xc7\x98\x1e\xe3\xe7\x16\x9d\x63\x7e\x16\xc0\x37\xd6\x0f\x72\xb4\xd8\xc7\xd1\x31\xa6\xc7\x38\xba\x45\xe7\x6e\x47\xdb\x33\x45\x9b\x72\xc6\xde\xf6\xb2\xf1\xef\xbf\xcd\xd3\xb1\x2c\xea\xe4\x64\x5d\xa1\x12\x59\x14\x1b\x62\xef\xfe\xb1\xbd\x80\x7c\x63\xb6\xe8\x1e\x77\xc8\x21\xd9\x22\x15\xde\xf1\x25\x51\x51\xd6\xa9\xfe\xe1\xfb\xb8\x83\xd4\x40\x47\x5e\x4b\xbc\x59\x61\xa6\x31\xef\x5d\x5e\xd2\x05\xac\xbf\x7b\x9d\xf3\xe5\x6b\x78\xf7\xda\x7c\x16\x3a\x5b\x82\xe6\xdd\xc9\x17\x73\x3c\x78\x49\xef\x30\x6d\x10\x34\xfc\x67\x01\xe1\x1f\x06\xe9\x7f\xc2\xe1\x21\x68\xf8\x77\x8f\xfc\xc3\xf7\x73\x82\xbc\x77\x4b\xc9\x37\xba\x06\xe5\x21\x75\x1f\xc5\xb0\xbe\x8f\x62\x54\xe1\xba\xd5\x38\xd4\xb4\xdb\xae\x09\x9f\x55\xba\x6a\xc2\x3f\x29\xb3\xf4\x54\xe6\x7c\x4c\x72\x84\x0a\xf5\xb2\xce\xe1\xb3\xd0\x4b\x50\x98\xd5\xd7\x7c\x36\x46\xd9\xac\x15\x82\xac\x61\x95\x4a\x91\x35\x20\x24\xd8\x83\xac\x90\x97\xb6\xd5\x07\x5d\xba\xc8\x83\xbf\x9e\x01\x4b\x8c\xe1\xf4\xac\xfd\x93\xaf\xfb\x18\x22\xdb\x90\x03\x72\xff\x66\x30\x47\x73\x3a\x37\xea\xed\xdc\x22\x0a\xb8\xa6\xde\xc4\xc6\x99\x63\xee\x75\xa7\x41\xd3\x65\x71\x27\x24\xbe\xfe\xe0\xbc\x63\xe3\xfd\xa7\xa2\x19\x5c\xd3\x09\xa8\x70\xcd\x99\xa2\x90\x66\x20\x73\x10\x74\xd1\x95\x27\xce\x81\x59\x0f\x5d\x3e\x2f\x6c\x80\xcb\xe4\xc7\x42\x19\x5e\x91\x85\x68\x32\xdd\x81\x49\xdf\x57\x0d\x96\x7c\x90\x69\x89\xcf\x81\x64\xc7\xbf\x0e\x98\x0c\x24\xda\xf3\xd3\x20\x8e\xa1\xf0\x26\x94\xee\xe0\xb2\x01\xa6\x5b\x78\x2c\x9c\xdd\x0b\xbb\x10\x50\xb7\xe2\x20\xe5\xbb\x7c\x83\xa9\x3b\x5c\x05\xf4\x67\x84\xd5\x79\x3a\x00\xac\xf0\xc7\xba\x6d\xd0\x7a\x47\xfa\xe0\xf2\x45\xce\x06\xb4\x4c\x7e\x2c\xb0\xdb\x2e\x78\x22\x3e\x20\x31\x7e\x6f\xdb\x4b\x9e\x67\xc1\x8f\xdd\x19\x40\x8f\x8d\xd8\x8e\x1d\x7b\xb1\x81\x1c\x0f\xbc\x1b\xc8\x31\xf9\xb1\xc8\x75\xe6\xf9\x20\x20\x99\xee\xc2\xd1\x3c\x51\x34\xf2\x20\xde\x12\x9f\x11\x4a\xf6\x6f\x00\xca\xa5\x3d\x00\x6c\x83\xd2\x9a\xdf\x87\xd2\x4e\xd2\x1b\x58\x5a\xfa\x63\xc1\xec\x9e\x14\x02\x34\xed\x42\x4c\xb1\x69\x37\x33\x70\xda\x69\xbf\xa5\x3e\x23\x9e\x76\xdb\x01\x40\x57\xee\x7c\xb1\x0d\x51\xe7\xc2\xac\x73\xb8\xf0\xb7\x99\xba\xf3\x5d\x37\xee\x3c\xd1\x69\xba\x56\xa0\xed\x07\xde\x70\x08\x7b\xa7\x69\x94\x9b\x68\x58\x80\x4e\x5e\x97\x58\x45\x9d\x51\x42\x4f\xef\xa7\xff\x0f\x00\x00\xff\xff\x0a\xd7\xd3\x32\xbb\x32\x00\x00") +var _schemaGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x5f\x6f\xdc\x36\x12\x7f\xde\xfd\x14\x53\x03\x0d\xb4\xc1\x56\xee\x15\x45\x71\xb7\xb9\x3d\xa0\x48\x13\xd4\xd7\x8b\x1b\x34\x49\x5f\x8c\xc0\x95\xa5\x91\xcd\x58\x22\xb7\x14\xd7\xb1\xeb\xfa\xbb\x1f\x38\x43\x52\x94\x56\xda\xdd\xf8\x4f\x5e\xb2\x1a\x72\x86\x33\x3f\xcd\x3f\x8e\x7c\x78\x08\x2f\xd5\xea\x46\x8b\xf3\x0b\x03\xdf\x7d\xfb\x8f\x7f\x7d\xb3\xd2\xd8\xa0\x34\xf0\x3a\xcb\xf1\x4c\xa9\x4b\x38\x92\x79\x0a\x3f\x56\x15\xd0\xa6\x06\xec\xba\xbe\xc2\x22\x9d\x1e\x1e\xc2\xfb\x0b\xd1\x40\xa3\xd6\x3a\x47\xc8\x55\x81\x20\x1a\xa8\x44\x8e\xb2\xc1\x02\xd6\xb2\x40\x0d\xe6\x02\xe1\xc7\x55\x96\x5f\x20\x7c\x97\x7e\xeb\x57\xa1\x54\x6b\x59\x58\x11\x42\xd2\x96\xff\x1d\xbd\x7c\x75\xfc\xee\x15\x94\xa2\x42\x4f\xd3\x4a\x19\x28\x84\xc6\xdc\x28\x7d\x03\xaa\x04\x13\x9d\x67\x34\x62\x3a\x9d\xae\xb2\xfc\x32\x3b\x47\xa8\x54\x56\x4c\xa7\xa2\x5e\x29\x6d\x20\x99\x4e\x0e\x50\xe6\xaa\x10\xf2\xfc\xf0\x53\xa3\xe4\xc1\x74\x72\x50\xd6\xc6\xfe\xa7\xb1\xac\x30\x37\x07\x53\xda\x63\xce\x55\x2a\xd4\x21\x4a\x5a\x8b\x9f\x0f\x9b\xfc\x02\xeb\x6c\x84\x7c\x88\xc5\x39\x8e\xad\x95\x02\xab\x62\x6c\x51\xc8\x02\xaf\x0f\xa6\xb3\xa9\xb5\xfe\x1d\xd1\x40\xa3\xc3\xbd\x81\x4c\x02\x4a\x93\xba\x05\x73\x91\x19\xf8\x9c\x35\x64\x1e\x16\x50\x6a\x55\x43\x06\xb9\xaa\x57\x95\xb0\x18\x37\xa8\xc1\x41\x90\x4e\xcd\xcd\x0a\xbd\xc8\xc6\xe8\x75\x6e\xe0\x76\x3a\x39\xce\x6a\x04\xf7\xaf\x31\x5a\xc8\x73\xe8\xff\xfb\xc3\x62\xb4\x38\x90\x59\x8d\x73\x55\x0b\x83\xf5\xca\xdc\x1c\xfc\x31\x9d\xbc\x54\xb2\x14\x6e\xbf\x55\x2b\x7e\xee\xf2\xe6\xb4\xd2\xe5\x7e\x55\x9c\x63\xe3\xb6\x9d\x7c\x7c\x6e\x1f\x47\x4e\xb6\x68\x36\x5d\xe6\xd7\x16\xc4\x26\x30\xd3\xe3\x30\x33\xc1\xdd\xe3\x3e\xb2\x28\xbb\xc3\x4f\x3e\x3e\xa7\xc7\x61\x6e\xc1\x3b\xbb\xec\x3f\x2b\x75\x19\x69\xfe\x56\x35\xc2\x08\x25\x07\xd8\x2f\xec\xce\x2e\xf3\x5b\x55\x89\xfc\x66\x1f\xe6\x15\xed\xec\x72\xff\x28\xa5\x32\x99\x65\x68\xa0\xce\x56\x27\xfc\xca\x3e\x0a\x69\x50\x97\x59\x8e\xb7\x77\x9e\x3b\x6b\x77\x76\x44\xdc\x91\x6b\x85\x63\x0b\x6c\x72\x2d\xce\xb0\x81\x0c\x56\x9e\xe8\x42\x8c\x7d\xd2\x79\x4e\xe0\x68\x7d\x27\xc2\x4d\x48\x03\x70\x78\x08\x4c\x72\xfc\x04\xfd\xa1\xc5\x00\x2a\xd1\x98\x74\x3a\x79\x23\xae\xb1\x38\x22\x63\xcf\x94\xaa\x1c\x87\xc8\x33\x83\x0d\x88\x32\x3a\x15\xd4\xd9\x27\xcc\xd9\xbd\x6b\xcb\xf5\x8d\x90\x2c\x40\x48\x7f\x08\x1f\x49\x24\x10\xf1\xc1\x35\x91\xf8\x4c\xb6\x97\x1d\x64\x33\x92\x98\x7e\x8f\x40\x62\xc6\xe1\x38\x1a\x8d\xa4\xf1\x50\x3a\x92\xa5\x6a\xb7\x3d\x27\xe4\xd2\xf7\x37\x2b\xec\x2c\x38\x76\xab\x40\x97\xfd\x7d\x16\x1f\xb6\xe3\x74\x93\xf5\x22\xf1\x9d\xf8\x2b\xd2\xfd\xb9\x90\xe6\x87\xef\x47\xb9\x1b\xf1\x57\xef\xf0\x57\x72\x5d\x37\x61\xdb\xc9\x47\x06\xe5\x16\x8e\xe7\xf0\xbb\xd7\x25\xb8\x25\xda\xcd\x5d\xfe\x0f\x52\xfc\xb9\x0e\x0a\x90\x5f\x0c\xfc\x73\xfc\x6b\xda\xdc\x15\x70\x2c\xaa\x2a\x3b\xab\x70\x2f\x01\xd2\x6d\xee\x8a\xf8\x75\x65\x7d\x3b\xab\xf6\x12\xa1\xdc\xe6\xae\x88\x9f\xb0\xcc\xd6\x95\xd9\xcf\x8c\x82\x37\x0f\x4a\xf8\x3d\xab\x2c\x1c\x71\x4c\x8f\x4b\x38\xbd\xb2\xbb\x07\xe5\xfc\x22\xa4\xcd\x89\xae\xa4\xa5\xee\x71\x4c\xce\xa5\x90\x45\xef\xbd\xac\x8a\xcc\xa0\x37\x6b\xd7\x7b\xa1\xcd\xa7\x83\x76\x1d\xd5\xf5\xda\x84\x17\xb4\x43\x90\xf0\x9b\xbb\x32\x7e\xcf\x2a\x51\x64\x46\x69\xf2\x34\x8a\xfd\x71\x19\x57\x61\x73\xcf\xd1\x8d\xd2\xd9\x39\xfe\x82\x94\x7f\x77\x84\x49\xc3\x9b\x4f\x2f\xf1\xa6\x9f\xc1\xe3\x94\x3d\x98\xc1\xe3\x24\xce\xab\x3d\x45\x50\x5a\xf2\xd5\x5e\x88\x34\x7e\x73\x4f\x06\xe5\x49\x9b\x23\xec\xde\xa8\x18\x74\xec\xf2\x32\x68\xf3\xe9\x66\xe6\x88\x0b\x0a\x8c\x95\x94\x5d\x35\x65\xf2\x52\xd5\x35\x86\x77\xb2\x03\xd8\x9c\x37\x0f\x54\x25\xea\x01\x36\x93\x34\x91\xef\x91\xa3\x89\xef\x71\x5a\x1d\x0f\xf3\x6e\xde\xed\xc9\x79\x07\x6f\x3f\x33\xff\x86\x65\xd0\x7a\x3b\xab\xc6\xf2\x74\x53\xed\xdf\xb0\x0c\x1b\x07\x3b\xac\x98\x7f\x3c\x2b\x8f\x38\xe8\x96\x94\x7c\x24\xaf\x50\x37\x5b\xdd\x3b\x74\x58\xb4\xb3\xaf\xf7\x9f\x6b\xa1\xb1\xd8\xcd\xae\xdd\xce\xf1\x40\x7f\x6e\xdb\xc7\xb4\x1b\xfa\x7b\x44\xf9\x63\x75\x5a\xdc\xac\x6c\x3a\x35\xd3\xef\xe1\xd5\xcc\xd8\xba\x75\xf4\xa2\x02\x54\x5b\xde\x4c\xd4\x76\x9f\xf8\x54\xb1\x57\x9f\xdd\xdf\x3d\xd4\x58\x47\x28\x07\x77\xdd\x01\x34\xa3\x74\x8c\x9f\xc9\x3d\x73\x8d\xd4\x0b\x66\xd2\x23\x62\x95\x62\x58\xe8\x17\xf7\xab\x2b\xa3\x74\x3a\x2d\xd7\x32\xf7\x9c\x09\x16\xee\x4d\xff\x14\x76\xcc\x9c\xcf\xdf\x4e\x27\x12\x61\xb1\x84\x67\xf6\xf1\x76\x3a\xb1\x21\xb9\x08\x9e\x84\x45\xfa\x3e\x3b\x9f\x5b\xf2\xcd\x0a\x17\x31\xd9\xc6\xf2\x74\x42\x99\x23\xa6\xdb\x67\x4b\x67\xe8\x17\x81\xce\xcf\x76\xc5\xf9\xff\xc2\xaf\xb8\x67\xbb\xe4\x7d\x7b\xe1\x96\xfc\x33\xaf\x95\xed\x59\xb4\x56\xfa\xb3\x5a\x68\x17\xb4\xd4\x3e\xdb\xd5\xc8\x5b\x17\x50\x67\x97\x98\x0c\xfb\xec\x6c\x3e\x9d\xdc\x4d\x27\xa5\xd2\x70\x3a\x87\xcc\x58\x54\x74\x26\xcf\xd1\x8a\x8c\x5d\xde\xa2\x24\x31\xcd\x8a\xa2\xa5\x26\x99\x99\x11\xbb\x28\x6d\x57\x61\x79\x59\xc7\x17\xf4\xf8\xd5\x12\xa4\xa8\x3c\xa7\x4d\x3d\xcb\xf0\x76\x34\x96\x33\xa6\x47\x2e\xb2\x04\xde\x17\xd1\x48\xbc\x46\xb3\xd6\x12\x24\xb6\xce\xc1\xed\x76\xf0\x8e\x10\x2e\x44\x26\xef\xe0\x9f\x43\xee\x41\xbc\x49\x59\xf8\xb6\x3a\x76\x90\x84\xaf\x8e\x73\x40\xad\xed\xf3\x2d\x19\x57\x16\xe9\x2b\xad\x63\x83\xbc\x4a\xa2\x9a\x43\x59\x1b\xbb\xac\x74\x99\x70\x10\xc0\xd7\x7f\x2e\xe0\xeb\xab\x83\xb9\x65\xa4\xf7\xe5\x24\x30\x5a\x0d\x21\xf5\x8c\x0e\xba\xed\x7b\x13\x04\x1e\xf2\x9a\x52\x75\x57\x2c\x65\xde\x77\x58\x5a\x71\x2e\x4b\xcd\xf7\x22\x5e\x20\xca\x86\x77\xd2\x52\xeb\x9f\xbe\x65\x5e\xb4\x3a\xf8\xbe\x78\x3a\x09\xdd\x70\xbb\xea\x29\x76\xd5\x75\x84\x8b\x56\xae\xef\x11\x19\x30\x3a\x3b\xee\x1d\x17\x74\x76\xa7\x9b\x6c\x77\x86\xe6\x70\x11\x6c\x0e\x1d\x60\xdf\xed\x69\xb9\xeb\xf8\x6d\x5f\x48\xeb\x15\xca\xa4\x2c\xd2\x96\x3a\x23\x21\xbe\x83\x0a\x67\x04\x0a\x2d\x87\x4e\x2a\x9c\x11\x28\x1b\xc1\x05\xbb\xc2\xcb\x37\x43\x11\x3e\x8e\x32\x1a\x7b\xe5\x66\xec\x35\xe5\x78\xec\x35\x25\xf9\x05\x2c\x77\xfb\x67\x2d\x9a\xc6\xa6\x61\xaa\x1c\xc2\x32\xd9\xe3\xbd\xd7\x1e\xcc\xad\x2c\xeb\x7d\xad\x6c\x7b\x17\x5c\x2c\x81\x2e\x81\x16\x4a\x7b\x39\x9c\xbd\x60\xfa\x57\x4b\xf8\xd6\x6b\x47\x97\xc6\x25\x3c\xb3\x0b\x91\x62\xfe\x05\xbb\x5d\xf1\x55\x64\x19\xae\x22\x16\xd8\x5f\xcb\xa4\xf5\x9c\x19\xdd\x4e\x12\xd6\xc2\x16\x4d\x1e\x05\xb8\xdb\x04\xd0\x1d\x07\xf2\x4c\xc2\x19\x02\x8d\xee\xb0\x00\xa3\x68\xcf\x39\x4a\xd4\x19\x05\xbc\xe5\x7c\xad\x34\xe0\x75\x56\xaf\x2a\x9c\x83\x54\x06\x32\xb0\x79\x80\x1a\xf4\x4a\x5c\x22\x18\x51\x63\x7a\xac\x3e\xa7\xa4\xf1\x29\x45\xbe\x35\xd8\x56\xa9\xf4\x4d\xa6\x9b\x8b\xac\x8a\x35\x7b\x41\x1b\x22\xa8\x5b\xab\xf8\xa2\xb6\x8c\x22\x20\x4e\x5f\x4d\x39\xb7\x3c\x6d\x0e\xe3\xc2\xbd\x59\xe1\x78\x74\x41\x49\x8c\x7f\x0e\x25\x31\x62\x4e\x44\x71\x6d\xef\xe7\x05\x5e\x77\xcb\x1c\x8b\xbe\x0d\x67\x3f\x23\x82\xd5\x96\xca\xbd\x73\x45\x51\x5c\x53\x2f\x4d\xd9\x81\x2b\xfb\x22\x2c\xf0\x73\x3f\x6f\xd8\x95\x36\x6b\xc4\xc1\x68\x57\x3a\xa1\x78\xe7\x2c\x75\x18\xba\x49\x23\xbf\x2d\x7a\x53\xd1\xe4\x32\x84\x8c\xfd\xa5\x20\x83\xff\xbe\xfb\xf5\xd8\x32\x53\x3f\xe4\x5e\x74\x81\xfc\xa2\x69\x8b\x15\xf0\xae\x33\x19\xe2\xff\x1c\x42\x9d\x43\x93\xc6\x9f\x6d\xdb\x2c\x77\xd2\x0c\x92\x33\x38\xf9\x78\x76\x63\x90\xdf\x79\x9b\xf1\x1b\xca\xcf\xcc\x7b\x4b\x01\x2c\x4b\xe1\xf3\xad\x1b\x82\x31\x2d\x99\x6d\xb4\x03\x42\xf2\x10\x3a\xe9\x39\x37\xf3\xcd\x66\x14\x5e\xcc\xf7\x85\x45\x5a\x94\xde\x37\x9b\xd4\xba\x0a\x0d\xba\xbc\x5c\x76\xcb\x3d\x2a\x94\xc3\x22\x94\xa8\xc6\x55\x28\xf4\xe5\xa9\x1d\x34\x47\x8d\x2c\xa8\x2b\xd4\x5a\x14\x18\x86\x6f\xf1\x6a\x3a\x98\xc5\x1c\x52\x91\x95\xc9\x8c\x23\x66\x3c\x95\x75\x0c\x64\x17\x7c\x7c\x0b\xb9\xaf\x0d\x67\x65\x25\x52\x14\xf8\x83\x82\x22\x8f\x71\x96\xc3\x05\xe3\xc6\xca\x36\xdc\x8c\x03\x37\xdf\x4b\xc8\x56\x2b\x94\x45\xe2\x08\xf3\xb6\x89\x8d\xc2\x3a\x99\xcd\x1c\x4c\x6e\x06\x1d\x1b\xe0\x26\xd8\x4f\x69\x82\xcd\x35\xc1\x08\xa7\x83\x33\xc3\xcf\xcf\x23\x43\x8e\xbc\x92\x71\xae\x1a\xb4\xa6\xf7\xd2\x69\x98\xfe\xf8\xef\xbc\x7f\x0c\x8f\xdd\x1f\xff\x1c\xc7\xd8\xa9\x1e\xcd\xcc\xa5\xc2\x0f\xb2\xee\x24\x43\xce\x68\x0d\xd7\x2d\x71\x85\x12\xce\xd6\x65\x89\x1a\x28\x07\xba\x72\xe0\xa7\xee\x94\xd7\x7a\x12\x92\xb3\x75\xe9\x92\x98\xed\x5d\x99\x38\x1f\x4b\x65\x1d\x18\x48\xc3\x20\xce\x0a\x9a\x43\xb3\x1d\x08\xd4\x3a\x76\x88\x32\x0a\x75\x57\x2e\x88\xa5\x3d\xa3\x4c\x5d\xc5\x6e\x92\x4d\xc9\x9b\xa2\xad\xec\xa8\x5e\xc6\xe5\x32\xe4\x3b\xfa\xd5\xb8\x89\xbe\x51\xfe\xeb\x00\x5f\x08\xe3\xfc\xee\x00\x4b\x1a\x70\xb0\xcc\xa0\x9f\x34\xfb\x05\x81\x60\xb3\xba\x91\xf4\x4e\x7c\x75\x72\xed\x96\xe8\x8a\x21\x12\x73\xa8\xa3\x90\x61\x95\xe9\x36\x94\xd5\xae\xa7\x1a\x2e\x15\xf5\x75\x28\x13\xd3\xc9\xc4\xdd\xab\x63\x6d\x5c\x62\xac\xaf\x67\x2d\xdc\x03\xc8\x76\x1b\x3f\x7b\x7a\xf0\x5b\x19\x79\xad\xd5\x97\x14\xfe\xd4\x79\xa7\x65\xfb\x46\x27\xb6\x77\x71\xe7\xb7\x17\xa8\x6e\x34\xdb\x6d\x03\xaa\x7c\xa9\x2e\xa4\x8c\xed\xa9\xc2\x18\x75\x09\xcf\xfc\x6f\x96\x48\xe9\xc4\xd5\xdb\x4f\x73\x22\xb9\xef\x48\x44\x34\x9a\x9b\x93\x49\xf4\x71\x68\x01\x62\xde\x0a\xf7\xce\x1a\xa5\x2b\xd7\xed\x40\x53\x7a\x40\xc6\x8a\xc4\x63\x83\x3e\x56\x1c\xee\x55\x1d\x48\xea\xb6\xfa\xf0\x04\xda\x8f\xd6\x85\x87\x14\x06\x3a\x80\xbf\x96\xc6\x66\x70\x71\x78\x74\xbf\x6f\xf5\xa7\x23\xbd\xf6\xfc\x5d\x37\xd2\xfd\x67\x56\xe8\x11\xfd\xd1\xab\xe1\xbe\xed\xc6\xb6\xba\x0a\xf5\x98\xc6\x8a\x12\xf8\xa0\x8e\xa0\x26\x75\xdf\xa0\x23\x4b\xdf\x3a\x7d\x7a\xa6\x7e\xb1\x5d\x03\x6d\x61\x7d\x3d\xd0\x12\x0e\xf7\x84\xdd\x82\xd0\xad\x06\x2e\x86\xb9\x1c\xf0\x05\xf6\x1e\xe5\xa0\xd3\x62\x8e\xd6\x83\xf1\x14\xfc\xc5\x15\x61\x38\xc1\xee\x97\x5f\xc7\x9d\x20\x94\xcf\xd1\xcc\xe9\x5f\x0f\xed\xd9\x95\x00\x37\x30\x1f\xc4\x2e\xee\xd4\x46\xa1\x1b\x8b\xe1\x2f\x04\x6e\x28\x42\xf7\x0d\xd0\x10\x9f\xec\x9b\xc1\x87\xcb\xac\xe2\x09\xec\xdd\xde\x26\x77\xba\xc6\x51\x9b\xc7\x83\x79\x7f\xab\x07\x43\x75\xbf\x48\xdd\xcf\x9c\x5e\xb8\xc9\xcd\xeb\x1a\x45\x66\xbe\xd6\x7a\x0e\xea\x92\x3b\xe7\x28\x70\x4f\x32\xe9\x7a\x94\x8f\xa4\xed\x57\xea\xd2\xe9\x38\xbc\xc9\xea\x2c\x83\x9d\xde\xc6\xda\xcb\xb6\xe7\xa4\x0e\x9f\xf4\x0d\xea\x73\xd4\xb3\x17\xb0\x5b\x66\xcd\x9b\x93\x4c\xce\xdc\xc8\x81\x2d\x45\x9e\xf5\xdf\xcb\x4e\xdc\xc7\xce\xb1\x4d\x0f\xb1\x73\x8b\xcc\x31\x3b\x4b\xe0\x89\xf5\xbd\x0c\x2d\xf7\x31\x74\x6c\xd3\x43\x0c\xdd\x22\x73\xb7\xa1\xed\x9d\xa2\x0d\x39\xab\x6f\x3b\x6c\xfc\xfb\x6f\xfb\x74\x24\x4b\x95\x1e\xaf\x6b\xd4\x22\x4f\x66\x96\xd8\x9b\x3f\xb6\x03\xc8\xd7\xf6\x88\xee\x75\x87\x0c\x92\x2d\x52\xf1\x8c\x2f\x4d\xca\x4a\x65\xe6\x87\xef\x67\x1d\xa4\x06\x2a\xf2\x5a\xe2\xf5\x0a\x73\x83\x45\x6f\x78\x49\x03\xd8\x30\x7b\x5d\xf0\xf0\x35\x9e\xbd\x36\x9f\x85\xc9\x2f\xc0\xf0\xe9\x64\x8b\xbd\x1e\xbc\xa0\x77\x98\x35\x08\x06\xfe\xb3\x84\xf8\x0f\x83\xcc\x3f\xe1\xd9\x33\x30\xf0\xef\x1e\xf9\x87\xef\x17\x04\x79\x6f\x4a\xc9\x13\x5d\x8b\xf2\x90\xb8\x0f\x62\x58\xde\x07\x31\x2a\x70\xdd\x4a\x1c\x2a\xda\x6d\xd5\x84\xcf\x3a\x5b\x35\xf1\x9f\x94\x39\x7a\x26\x0b\xbe\x26\x79\x42\x8d\xe6\x42\x15\xf0\x59\x98\x0b\xd0\x98\xab\x2b\xbe\x1b\xa3\x6c\xd6\x1a\x41\x2a\x58\x65\x52\xe4\x0d\x08\x09\xee\x22\x2b\xe4\xb9\x2b\xf5\x51\x95\x2e\x8b\xe8\xaf\x67\xc0\x11\x67\x70\xf2\xb1\xfd\x93\xaf\xbb\x19\x24\xae\x20\x47\xe4\xfe\x64\xb0\x40\x7b\x3b\xb7\xe2\x5d\xdf\x22\x4a\xb8\xa2\xda\xc4\xca\xd9\x6b\xee\x55\xa7\x40\xd3\xb0\xb8\xe3\x12\x5f\xbf\xf7\xd6\xb1\xf2\xe1\x53\xd1\x1c\xae\xe8\x06\x54\xfa\xe2\x4c\x5e\x48\x3d\x90\xbd\x08\x7a\xef\x2a\x52\x6f\xc0\xbc\x87\x2e\xdf\x17\x36\xc0\x65\xf2\x43\xa1\x8c\x47\x64\x31\x9a\x4c\xf7\x60\xd2\xf7\x55\x8b\x25\x5f\x64\x5a\xe2\x53\x20\xd9\xb1\xaf\x03\x26\x03\x89\xee\xfe\x34\x88\x63\xcc\xbc\x09\xa5\xbf\xb8\x6c\x80\xe9\x17\x1e\x0a\x67\x77\x60\x17\x03\xea\x57\x3c\xa4\x3c\xcb\xb7\x98\xfa\xcb\x55\x44\x7f\x42\x58\xbd\xa5\x03\xc0\x8a\x70\xad\xdb\x06\x6d\x30\xa4\x0f\x2e\x0f\x72\x36\xa0\x65\xf2\x43\x81\xdd\x36\xe0\x49\xf8\x82\xc4\xf8\xbd\x69\x87\x3c\x4f\x82\x1f\x9b\x33\x80\x1e\x2b\xb1\x1d\x3b\xb6\x62\x03\x39\x6e\x78\x37\x90\x63\xf2\x43\x91\xeb\xf4\xf3\x91\x43\x32\xdd\xbb\xa3\x7d\x22\x6f\xe4\x46\xbc\x25\x3e\x21\x94\x6c\xdf\x00\x94\x17\xee\x02\xb0\x0d\x4a\xa7\x7e\x1f\x4a\xd7\x49\x6f\x60\xe9\xe8\x0f\x05\xb3\x7b\x53\x88\xd0\x74\x0b\x33\xf2\x4d\x77\x98\x85\xd3\x75\xfb\x2d\xf5\x09\xf1\x74\xc7\x0e\x00\xba\xf2\xf7\x8b\x6d\x88\x7a\x13\xe6\x9d\xcb\x45\x98\x66\x9a\xce\x77\xdd\x59\xe7\x89\x6e\xd3\x4a\x83\x71\x1f\x78\xe3\x26\xec\xad\xa1\x56\x6e\x62\x60\x09\x26\x7d\x55\x61\x9d\x74\x5a\x09\x33\xbd\x9b\xfe\x3f\x00\x00\xff\xff\xbf\x46\x3c\x08\x84\x32\x00\x00") func schemaGoBytes() ([]byte, error) { return bindataRead( @@ -113,7 +113,7 @@ func schemaGo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "schema.go", size: 12987, mode: os.FileMode(420), modTime: time.Unix(1, 0)} + info := bindataFileInfo{name: "schema.go", size: 12932, mode: os.FileMode(420), modTime: time.Unix(1, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/entc/load/load.go b/entc/load/load.go index 5edd6aacc..0ad7cb83f 100644 --- a/entc/load/load.go +++ b/entc/load/load.go @@ -23,8 +23,8 @@ import ( "text/template" "time" - "github.com/facebook/ent" - "github.com/facebook/ent/entc/load/internal" + "entgo.io/ent" + "entgo.io/ent/entc/load/internal" "golang.org/x/tools/go/packages" ) diff --git a/entc/load/load_test.go b/entc/load/load_test.go index 482c1a49b..43a1a2131 100644 --- a/entc/load/load_test.go +++ b/entc/load/load_test.go @@ -7,7 +7,7 @@ package load import ( "testing" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/schema/field" "github.com/stretchr/testify/require" ) @@ -17,7 +17,7 @@ func TestLoad(t *testing.T) { spec, err := cfg.Load() require.NoError(t, err) require.Len(t, spec.Schemas, 3) - require.Equal(t, "github.com/facebook/ent/entc/load/testdata/valid", spec.PkgPath) + require.Equal(t, "entgo.io/ent/entc/load/testdata/valid", spec.PkgPath) require.Equal(t, "Group", spec.Schemas[0].Name, "ordered alphabetically") require.Equal(t, "Tag", spec.Schemas[1].Name) @@ -37,7 +37,7 @@ func TestLoadSpecific(t *testing.T) { require.NoError(t, err) require.Len(t, spec.Schemas, 1) require.Equal(t, "User", spec.Schemas[0].Name) - require.Equal(t, "github.com/facebook/ent/entc/load/testdata/valid", spec.PkgPath) + require.Equal(t, "entgo.io/ent/entc/load/testdata/valid", spec.PkgPath) } func TestLoadNoSchema(t *testing.T) { diff --git a/entc/load/schema.go b/entc/load/schema.go index 8908bc516..a152ddccc 100644 --- a/entc/load/schema.go +++ b/entc/load/schema.go @@ -9,11 +9,11 @@ import ( "fmt" "reflect" - "github.com/facebook/ent" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" + "entgo.io/ent" + "entgo.io/ent/schema" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" ) // Schema represents an ent.Schema that was loaded from a complied user package. diff --git a/entc/load/schema_test.go b/entc/load/schema_test.go index 7fb5fdc3a..a01ac6170 100644 --- a/entc/load/schema_test.go +++ b/entc/load/schema_test.go @@ -12,12 +12,12 @@ import ( "testing" "time" - "github.com/facebook/ent" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" + "entgo.io/ent/schema/mixin" "github.com/google/uuid" "github.com/stretchr/testify/require" diff --git a/entc/load/testdata/base/schema.go b/entc/load/testdata/base/schema.go index ddee67a07..9945ea301 100644 --- a/entc/load/testdata/base/schema.go +++ b/entc/load/testdata/base/schema.go @@ -5,8 +5,8 @@ package base import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // base schema for sharing fields and edges. diff --git a/entc/load/testdata/failure/user.go b/entc/load/testdata/failure/user.go index 03d6b7e3c..5589c484f 100644 --- a/entc/load/testdata/failure/user.go +++ b/entc/load/testdata/failure/user.go @@ -5,8 +5,8 @@ package failure import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema/edge" ) type User struct { diff --git a/entc/load/testdata/valid/schema.go b/entc/load/testdata/valid/schema.go index 5d7f09e83..95f3f3448 100644 --- a/entc/load/testdata/valid/schema.go +++ b/entc/load/testdata/valid/schema.go @@ -5,8 +5,8 @@ package valid import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/field" ) // User holds the user schema. diff --git a/entql/entql_test.go b/entql/entql_test.go index 8dff59bd2..b0eaedf82 100644 --- a/entql/entql_test.go +++ b/entql/entql_test.go @@ -8,7 +8,7 @@ import ( "strconv" "testing" - "github.com/facebook/ent/entql" + "entgo.io/ent/entql" "github.com/stretchr/testify/assert" ) diff --git a/entql/internal/gen.go b/entql/internal/gen.go index ea7e54882..4e131ce9e 100644 --- a/entql/internal/gen.go +++ b/entql/internal/gen.go @@ -13,7 +13,7 @@ import ( "strings" "text/template" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/schema/field" ) func main() { diff --git a/examples/README.md b/examples/README.md index 066c15ca8..0e84ba848 100644 --- a/examples/README.md +++ b/examples/README.md @@ -222,7 +222,7 @@ func Traverse(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/traversal). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/traversal). ## Relationship @@ -304,7 +304,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2o2types). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2o2types). ## O2O Same Type @@ -400,7 +400,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2o2recur). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2o2recur). ## O2O Bidirectional @@ -474,7 +474,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2obidi). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2obidi). ## O2M Two Types @@ -555,7 +555,7 @@ func Do(ctx context.Context, client *ent.Client) error { return nil } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2m2types). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2m2types). ## O2M Same Type @@ -664,7 +664,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/o2mrecur). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/o2mrecur). ## M2M Two Types @@ -756,7 +756,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/m2m2types). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/m2m2types). ## M2M Same Type @@ -849,7 +849,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/m2mrecur). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/m2mrecur). ## M2M Bidirectional @@ -912,7 +912,7 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/m2mbidi). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/m2mbidi). ## Indexes @@ -1020,5 +1020,5 @@ func Do(ctx context.Context, client *ent.Client) error { } ``` -The full example exists in [GitHub](https://github.com/facebook/ent/tree/master/examples/edgeindex). +The full example exists in [GitHub](https://entgo.io/ent/tree/master/examples/edgeindex). diff --git a/examples/edgeindex/ent/city.go b/examples/edgeindex/ent/city.go index 824f35630..8c757707f 100644 --- a/examples/edgeindex/ent/city.go +++ b/examples/edgeindex/ent/city.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/edgeindex/ent/city" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/edgeindex/ent/city" ) // City is the model entity for the City schema. diff --git a/examples/edgeindex/ent/city/where.go b/examples/edgeindex/ent/city/where.go index b6d57dc3c..4f54559aa 100644 --- a/examples/edgeindex/ent/city/where.go +++ b/examples/edgeindex/ent/city/where.go @@ -7,9 +7,9 @@ package city import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/edgeindex/ent/city_create.go b/examples/edgeindex/ent/city_create.go index 7bde747a9..cb03a0ab8 100644 --- a/examples/edgeindex/ent/city_create.go +++ b/examples/edgeindex/ent/city_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/street" + "entgo.io/ent/schema/field" ) // CityCreate is the builder for creating a City entity. diff --git a/examples/edgeindex/ent/city_delete.go b/examples/edgeindex/ent/city_delete.go index 2826b127d..4899bc4ff 100644 --- a/examples/edgeindex/ent/city_delete.go +++ b/examples/edgeindex/ent/city_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/schema/field" ) // CityDelete is the builder for deleting a City entity. diff --git a/examples/edgeindex/ent/city_query.go b/examples/edgeindex/ent/city_query.go index 3d1179ba5..16c28e581 100644 --- a/examples/edgeindex/ent/city_query.go +++ b/examples/edgeindex/ent/city_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" - "github.com/facebook/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/examples/edgeindex/ent/street" + "entgo.io/ent/schema/field" ) // CityQuery is the builder for querying City entities. diff --git a/examples/edgeindex/ent/city_update.go b/examples/edgeindex/ent/city_update.go index a1cfabe67..e68c7072f 100644 --- a/examples/edgeindex/ent/city_update.go +++ b/examples/edgeindex/ent/city_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" - "github.com/facebook/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/examples/edgeindex/ent/street" + "entgo.io/ent/schema/field" ) // CityUpdate is the builder for updating City entities. diff --git a/examples/edgeindex/ent/client.go b/examples/edgeindex/ent/client.go index dafd55483..30511f7b2 100644 --- a/examples/edgeindex/ent/client.go +++ b/examples/edgeindex/ent/client.go @@ -11,14 +11,14 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/edgeindex/ent/migrate" + "entgo.io/ent/examples/edgeindex/ent/migrate" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/street" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/edgeindex/ent/config.go b/examples/edgeindex/ent/config.go index 72da9a077..b5a90a269 100644 --- a/examples/edgeindex/ent/config.go +++ b/examples/edgeindex/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/edgeindex/ent/ent.go b/examples/edgeindex/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/edgeindex/ent/ent.go +++ b/examples/edgeindex/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/edgeindex/ent/enttest/enttest.go b/examples/edgeindex/ent/enttest/enttest.go index ac5d7f6e3..50e1bcc8e 100644 --- a/examples/edgeindex/ent/enttest/enttest.go +++ b/examples/edgeindex/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/edgeindex/ent" + "entgo.io/ent/examples/edgeindex/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/edgeindex/ent/runtime" + _ "entgo.io/ent/examples/edgeindex/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/edgeindex/ent/generate.go b/examples/edgeindex/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/edgeindex/ent/generate.go +++ b/examples/edgeindex/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/edgeindex/ent/hook/hook.go b/examples/edgeindex/ent/hook/hook.go index b2df98813..b91d64d43 100644 --- a/examples/edgeindex/ent/hook/hook.go +++ b/examples/edgeindex/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/edgeindex/ent" + "entgo.io/ent/examples/edgeindex/ent" ) // The CityFunc type is an adapter to allow the use of ordinary diff --git a/examples/edgeindex/ent/migrate/migrate.go b/examples/edgeindex/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/edgeindex/ent/migrate/migrate.go +++ b/examples/edgeindex/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/edgeindex/ent/migrate/schema.go b/examples/edgeindex/ent/migrate/schema.go index f970ca58e..a24ac2880 100644 --- a/examples/edgeindex/ent/migrate/schema.go +++ b/examples/edgeindex/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/edgeindex/ent/mutation.go b/examples/edgeindex/ent/mutation.go index 125ee2d8f..34420d71c 100644 --- a/examples/edgeindex/ent/mutation.go +++ b/examples/edgeindex/ent/mutation.go @@ -11,11 +11,11 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" - "github.com/facebook/ent/examples/edgeindex/ent/street" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/edgeindex/ent/predicate/predicate.go b/examples/edgeindex/ent/predicate/predicate.go index 65fa2078e..48ae0a1e0 100644 --- a/examples/edgeindex/ent/predicate/predicate.go +++ b/examples/edgeindex/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // City is the predicate function for city builders. diff --git a/examples/edgeindex/ent/runtime/runtime.go b/examples/edgeindex/ent/runtime/runtime.go index 3597989d0..7eee6f9da 100644 --- a/examples/edgeindex/ent/runtime/runtime.go +++ b/examples/edgeindex/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/edgeindex/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/edgeindex/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/edgeindex/ent/schema/city.go b/examples/edgeindex/ent/schema/city.go index b577a4b44..d4b9c54c8 100644 --- a/examples/edgeindex/ent/schema/city.go +++ b/examples/edgeindex/ent/schema/city.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // City holds the schema definition for the City entity. diff --git a/examples/edgeindex/ent/schema/street.go b/examples/edgeindex/ent/schema/street.go index 1e8479d9b..2a7074ea2 100644 --- a/examples/edgeindex/ent/schema/street.go +++ b/examples/edgeindex/ent/schema/street.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" - "github.com/facebook/ent/schema/index" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" + "entgo.io/ent/schema/index" ) // Street holds the schema definition for the Street entity. diff --git a/examples/edgeindex/ent/street.go b/examples/edgeindex/ent/street.go index a20479ad9..785305f32 100644 --- a/examples/edgeindex/ent/street.go +++ b/examples/edgeindex/ent/street.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/street" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/street" ) // Street is the model entity for the Street schema. diff --git a/examples/edgeindex/ent/street/where.go b/examples/edgeindex/ent/street/where.go index e5965910a..1e8411338 100644 --- a/examples/edgeindex/ent/street/where.go +++ b/examples/edgeindex/ent/street/where.go @@ -7,9 +7,9 @@ package street import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/edgeindex/ent/street_create.go b/examples/edgeindex/ent/street_create.go index eaa4cb175..0f00090d1 100644 --- a/examples/edgeindex/ent/street_create.go +++ b/examples/edgeindex/ent/street_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/street" + "entgo.io/ent/schema/field" ) // StreetCreate is the builder for creating a Street entity. diff --git a/examples/edgeindex/ent/street_delete.go b/examples/edgeindex/ent/street_delete.go index a56abba8a..f08026500 100644 --- a/examples/edgeindex/ent/street_delete.go +++ b/examples/edgeindex/ent/street_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" - "github.com/facebook/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/examples/edgeindex/ent/street" + "entgo.io/ent/schema/field" ) // StreetDelete is the builder for deleting a Street entity. diff --git a/examples/edgeindex/ent/street_query.go b/examples/edgeindex/ent/street_query.go index 26b7016a9..35e4eaa3e 100644 --- a/examples/edgeindex/ent/street_query.go +++ b/examples/edgeindex/ent/street_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" - "github.com/facebook/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/examples/edgeindex/ent/street" + "entgo.io/ent/schema/field" ) // StreetQuery is the builder for querying Street entities. diff --git a/examples/edgeindex/ent/street_update.go b/examples/edgeindex/ent/street_update.go index b13191c5e..3051ea6a5 100644 --- a/examples/edgeindex/ent/street_update.go +++ b/examples/edgeindex/ent/street_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/edgeindex/ent/city" - "github.com/facebook/ent/examples/edgeindex/ent/predicate" - "github.com/facebook/ent/examples/edgeindex/ent/street" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/edgeindex/ent/city" + "entgo.io/ent/examples/edgeindex/ent/predicate" + "entgo.io/ent/examples/edgeindex/ent/street" + "entgo.io/ent/schema/field" ) // StreetUpdate is the builder for updating Street entities. diff --git a/examples/edgeindex/ent/tx.go b/examples/edgeindex/ent/tx.go index 384fe2cb9..d52d583e7 100644 --- a/examples/edgeindex/ent/tx.go +++ b/examples/edgeindex/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/edgeindex/example_test.go b/examples/edgeindex/example_test.go index ea17d1a95..6671a748d 100644 --- a/examples/edgeindex/example_test.go +++ b/examples/edgeindex/example_test.go @@ -9,7 +9,7 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/edgeindex/ent" + "entgo.io/ent/examples/edgeindex/ent" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/entcpkg/README.md b/examples/entcpkg/README.md index 61906c503..0c6d7cc86 100644 --- a/examples/entcpkg/README.md +++ b/examples/entcpkg/README.md @@ -15,8 +15,8 @@ import ( "strings" "text/template" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" ) func main() { diff --git a/examples/entcpkg/ent/client.go b/examples/entcpkg/ent/client.go index 1ad582332..2e521b7c4 100644 --- a/examples/entcpkg/ent/client.go +++ b/examples/entcpkg/ent/client.go @@ -11,12 +11,12 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/entcpkg/ent/migrate" + "entgo.io/ent/examples/entcpkg/ent/migrate" - "github.com/facebook/ent/examples/entcpkg/ent/user" + "entgo.io/ent/examples/entcpkg/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" ) // Client is the client that holds all ent builders. diff --git a/examples/entcpkg/ent/config.go b/examples/entcpkg/ent/config.go index 97712c973..461de3d8d 100644 --- a/examples/entcpkg/ent/config.go +++ b/examples/entcpkg/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/entcpkg/ent/debug.go b/examples/entcpkg/ent/debug.go index 1981dfb4b..c6a7ae20c 100644 --- a/examples/entcpkg/ent/debug.go +++ b/examples/entcpkg/ent/debug.go @@ -6,7 +6,7 @@ package ent -import "github.com/facebook/ent/dialect" +import "entgo.io/ent/dialect" func (c *UserClient) Debug() *UserClient { if c.debug { diff --git a/examples/entcpkg/ent/ent.go b/examples/entcpkg/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/entcpkg/ent/ent.go +++ b/examples/entcpkg/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/entcpkg/ent/entc.go b/examples/entcpkg/ent/entc.go index e15119ea4..6b4d2bdb9 100644 --- a/examples/entcpkg/ent/entc.go +++ b/examples/entcpkg/ent/entc.go @@ -11,8 +11,8 @@ import ( "strings" "text/template" - "github.com/facebook/ent/entc" - "github.com/facebook/ent/entc/gen" + "entgo.io/ent/entc" + "entgo.io/ent/entc/gen" ) func main() { diff --git a/examples/entcpkg/ent/enttest/enttest.go b/examples/entcpkg/ent/enttest/enttest.go index 4d25efebd..2d2072c86 100644 --- a/examples/entcpkg/ent/enttest/enttest.go +++ b/examples/entcpkg/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/entcpkg/ent" + "entgo.io/ent/examples/entcpkg/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/entcpkg/ent/runtime" + _ "entgo.io/ent/examples/entcpkg/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/entcpkg/ent/hook/hook.go b/examples/entcpkg/ent/hook/hook.go index 3fb4df341..98ee82e91 100644 --- a/examples/entcpkg/ent/hook/hook.go +++ b/examples/entcpkg/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/entcpkg/ent" + "entgo.io/ent/examples/entcpkg/ent" ) // The UserFunc type is an adapter to allow the use of ordinary diff --git a/examples/entcpkg/ent/migrate/migrate.go b/examples/entcpkg/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/entcpkg/ent/migrate/migrate.go +++ b/examples/entcpkg/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/entcpkg/ent/migrate/schema.go b/examples/entcpkg/ent/migrate/schema.go index 11b0068c7..1a63472a3 100644 --- a/examples/entcpkg/ent/migrate/schema.go +++ b/examples/entcpkg/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/entcpkg/ent/mutation.go b/examples/entcpkg/ent/mutation.go index fc4bc1403..91af5fa8b 100644 --- a/examples/entcpkg/ent/mutation.go +++ b/examples/entcpkg/ent/mutation.go @@ -11,8 +11,8 @@ import ( "fmt" "sync" - "github.com/facebook/ent" - "github.com/facebook/ent/examples/entcpkg/ent/predicate" + "entgo.io/ent" + "entgo.io/ent/examples/entcpkg/ent/predicate" ) const ( diff --git a/examples/entcpkg/ent/predicate/predicate.go b/examples/entcpkg/ent/predicate/predicate.go index 5df743681..e8922f489 100644 --- a/examples/entcpkg/ent/predicate/predicate.go +++ b/examples/entcpkg/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // User is the predicate function for user builders. diff --git a/examples/entcpkg/ent/runtime/runtime.go b/examples/entcpkg/ent/runtime/runtime.go index ec267ecc4..900d19511 100644 --- a/examples/entcpkg/ent/runtime/runtime.go +++ b/examples/entcpkg/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/entcpkg/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/entcpkg/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/entcpkg/ent/schema/user.go b/examples/entcpkg/ent/schema/user.go index 911bca675..dd0a4e537 100644 --- a/examples/entcpkg/ent/schema/user.go +++ b/examples/entcpkg/ent/schema/user.go @@ -4,7 +4,7 @@ package schema -import "github.com/facebook/ent" +import "entgo.io/ent" // User holds the schema definition for the User entity. type User struct { diff --git a/examples/entcpkg/ent/template/debug.tmpl b/examples/entcpkg/ent/template/debug.tmpl index 2028c64f4..40e3fdab6 100644 --- a/examples/entcpkg/ent/template/debug.tmpl +++ b/examples/entcpkg/ent/template/debug.tmpl @@ -19,4 +19,4 @@ } {{ end }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/examples/entcpkg/ent/template/static.tmpl b/examples/entcpkg/ent/template/static.tmpl index 4c4cc86d0..540f9ffa2 100644 --- a/examples/entcpkg/ent/template/static.tmpl +++ b/examples/entcpkg/ent/template/static.tmpl @@ -6,4 +6,4 @@ // StaticField defined by templates (titled {{ title "staticField" }}). StaticField string `json:"static_field,omitempty"` {{- end }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/examples/entcpkg/ent/tx.go b/examples/entcpkg/ent/tx.go index 1f608018b..f3aaeb4de 100644 --- a/examples/entcpkg/ent/tx.go +++ b/examples/entcpkg/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/entcpkg/ent/user.go b/examples/entcpkg/ent/user.go index a8e082bc6..b97e9e6e1 100644 --- a/examples/entcpkg/ent/user.go +++ b/examples/entcpkg/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/entcpkg/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/entcpkg/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/entcpkg/ent/user/where.go b/examples/entcpkg/ent/user/where.go index 1916f7187..d7dd044fd 100644 --- a/examples/entcpkg/ent/user/where.go +++ b/examples/entcpkg/ent/user/where.go @@ -7,8 +7,8 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/entcpkg/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/entcpkg/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/entcpkg/ent/user_create.go b/examples/entcpkg/ent/user_create.go index 09d801b06..888af85f7 100644 --- a/examples/entcpkg/ent/user_create.go +++ b/examples/entcpkg/ent/user_create.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/entcpkg/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/entcpkg/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/entcpkg/ent/user_delete.go b/examples/entcpkg/ent/user_delete.go index 0b3426c6e..de11626b9 100644 --- a/examples/entcpkg/ent/user_delete.go +++ b/examples/entcpkg/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/entcpkg/ent/predicate" - "github.com/facebook/ent/examples/entcpkg/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/entcpkg/ent/predicate" + "entgo.io/ent/examples/entcpkg/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/entcpkg/ent/user_query.go b/examples/entcpkg/ent/user_query.go index 512b626e4..ad4284698 100644 --- a/examples/entcpkg/ent/user_query.go +++ b/examples/entcpkg/ent/user_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/entcpkg/ent/predicate" - "github.com/facebook/ent/examples/entcpkg/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/entcpkg/ent/predicate" + "entgo.io/ent/examples/entcpkg/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/entcpkg/ent/user_update.go b/examples/entcpkg/ent/user_update.go index 2c679d266..69b374d69 100644 --- a/examples/entcpkg/ent/user_update.go +++ b/examples/entcpkg/ent/user_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/entcpkg/ent/predicate" - "github.com/facebook/ent/examples/entcpkg/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/entcpkg/ent/predicate" + "entgo.io/ent/examples/entcpkg/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/entcpkg/example_test.go b/examples/entcpkg/example_test.go index c3b401dde..44bccf498 100644 --- a/examples/entcpkg/example_test.go +++ b/examples/entcpkg/example_test.go @@ -9,7 +9,7 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/entcpkg/ent" + "entgo.io/ent/examples/entcpkg/ent" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/m2m2types/ent/client.go b/examples/m2m2types/ent/client.go index b5238062f..9c382b5eb 100644 --- a/examples/m2m2types/ent/client.go +++ b/examples/m2m2types/ent/client.go @@ -11,14 +11,14 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/m2m2types/ent/migrate" + "entgo.io/ent/examples/m2m2types/ent/migrate" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/user" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/m2m2types/ent/config.go b/examples/m2m2types/ent/config.go index 8a3ef84c9..32c34d705 100644 --- a/examples/m2m2types/ent/config.go +++ b/examples/m2m2types/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/m2m2types/ent/ent.go b/examples/m2m2types/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/m2m2types/ent/ent.go +++ b/examples/m2m2types/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/m2m2types/ent/enttest/enttest.go b/examples/m2m2types/ent/enttest/enttest.go index b5ff37a58..b3aa71d88 100644 --- a/examples/m2m2types/ent/enttest/enttest.go +++ b/examples/m2m2types/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/m2m2types/ent" + "entgo.io/ent/examples/m2m2types/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/m2m2types/ent/runtime" + _ "entgo.io/ent/examples/m2m2types/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/m2m2types/ent/generate.go b/examples/m2m2types/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/m2m2types/ent/generate.go +++ b/examples/m2m2types/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/m2m2types/ent/group.go b/examples/m2m2types/ent/group.go index 5daa110ec..63acec844 100644 --- a/examples/m2m2types/ent/group.go +++ b/examples/m2m2types/ent/group.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/m2m2types/ent/group" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/m2m2types/ent/group" ) // Group is the model entity for the Group schema. diff --git a/examples/m2m2types/ent/group/where.go b/examples/m2m2types/ent/group/where.go index 1f6c68076..436d97305 100644 --- a/examples/m2m2types/ent/group/where.go +++ b/examples/m2m2types/ent/group/where.go @@ -7,9 +7,9 @@ package group import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/m2m2types/ent/group_create.go b/examples/m2m2types/ent/group_create.go index 984122fad..1f57a1c0b 100644 --- a/examples/m2m2types/ent/group_create.go +++ b/examples/m2m2types/ent/group_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/user" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/examples/m2m2types/ent/group_delete.go b/examples/m2m2types/ent/group_delete.go index a0d658928..86045a531 100644 --- a/examples/m2m2types/ent/group_delete.go +++ b/examples/m2m2types/ent/group_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/examples/m2m2types/ent/group_query.go b/examples/m2m2types/ent/group_query.go index 3e0ca390b..58a59e8ae 100644 --- a/examples/m2m2types/ent/group_query.go +++ b/examples/m2m2types/ent/group_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" - "github.com/facebook/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/examples/m2m2types/ent/user" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/examples/m2m2types/ent/group_update.go b/examples/m2m2types/ent/group_update.go index c147dc37c..faed48bf5 100644 --- a/examples/m2m2types/ent/group_update.go +++ b/examples/m2m2types/ent/group_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" - "github.com/facebook/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/examples/m2m2types/ent/user" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/examples/m2m2types/ent/hook/hook.go b/examples/m2m2types/ent/hook/hook.go index ae69bd96c..63280e144 100644 --- a/examples/m2m2types/ent/hook/hook.go +++ b/examples/m2m2types/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/m2m2types/ent" + "entgo.io/ent/examples/m2m2types/ent" ) // The GroupFunc type is an adapter to allow the use of ordinary diff --git a/examples/m2m2types/ent/migrate/migrate.go b/examples/m2m2types/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/m2m2types/ent/migrate/migrate.go +++ b/examples/m2m2types/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/m2m2types/ent/migrate/schema.go b/examples/m2m2types/ent/migrate/schema.go index 7e5d4cf23..095c5d055 100644 --- a/examples/m2m2types/ent/migrate/schema.go +++ b/examples/m2m2types/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/m2m2types/ent/mutation.go b/examples/m2m2types/ent/mutation.go index d8e1de942..f647fca1a 100644 --- a/examples/m2m2types/ent/mutation.go +++ b/examples/m2m2types/ent/mutation.go @@ -11,11 +11,11 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" - "github.com/facebook/ent/examples/m2m2types/ent/user" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/m2m2types/ent/predicate/predicate.go b/examples/m2m2types/ent/predicate/predicate.go index 2ba794b9c..50e0131dc 100644 --- a/examples/m2m2types/ent/predicate/predicate.go +++ b/examples/m2m2types/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Group is the predicate function for group builders. diff --git a/examples/m2m2types/ent/runtime/runtime.go b/examples/m2m2types/ent/runtime/runtime.go index ada070d23..fe981c37e 100644 --- a/examples/m2m2types/ent/runtime/runtime.go +++ b/examples/m2m2types/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/m2m2types/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/m2m2types/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/m2m2types/ent/schema/group.go b/examples/m2m2types/ent/schema/group.go index 7ccf15a51..c56e9cceb 100644 --- a/examples/m2m2types/ent/schema/group.go +++ b/examples/m2m2types/ent/schema/group.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Group holds the schema definition for the Group entity. diff --git a/examples/m2m2types/ent/schema/user.go b/examples/m2m2types/ent/schema/user.go index 92c2aba4b..f9278fb80 100644 --- a/examples/m2m2types/ent/schema/user.go +++ b/examples/m2m2types/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/m2m2types/ent/tx.go b/examples/m2m2types/ent/tx.go index fcb3759ed..5c7453b16 100644 --- a/examples/m2m2types/ent/tx.go +++ b/examples/m2m2types/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/m2m2types/ent/user.go b/examples/m2m2types/ent/user.go index 729360c9f..7cd365a27 100644 --- a/examples/m2m2types/ent/user.go +++ b/examples/m2m2types/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/m2m2types/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/m2m2types/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/m2m2types/ent/user/where.go b/examples/m2m2types/ent/user/where.go index 9363eba6e..c07f7beed 100644 --- a/examples/m2m2types/ent/user/where.go +++ b/examples/m2m2types/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/m2m2types/ent/user_create.go b/examples/m2m2types/ent/user_create.go index 1cea133a8..dbff20047 100644 --- a/examples/m2m2types/ent/user_create.go +++ b/examples/m2m2types/ent/user_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/m2m2types/ent/user_delete.go b/examples/m2m2types/ent/user_delete.go index df5c886ec..319ff9ad1 100644 --- a/examples/m2m2types/ent/user_delete.go +++ b/examples/m2m2types/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" - "github.com/facebook/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/examples/m2m2types/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/m2m2types/ent/user_query.go b/examples/m2m2types/ent/user_query.go index 13d0b672a..edc959268 100644 --- a/examples/m2m2types/ent/user_query.go +++ b/examples/m2m2types/ent/user_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" - "github.com/facebook/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/examples/m2m2types/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/m2m2types/ent/user_update.go b/examples/m2m2types/ent/user_update.go index cb665b309..bf70b9b40 100644 --- a/examples/m2m2types/ent/user_update.go +++ b/examples/m2m2types/ent/user_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/predicate" - "github.com/facebook/ent/examples/m2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/predicate" + "entgo.io/ent/examples/m2m2types/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/m2m2types/example_test.go b/examples/m2m2types/example_test.go index a15e347a8..fdf9e20a5 100644 --- a/examples/m2m2types/example_test.go +++ b/examples/m2m2types/example_test.go @@ -9,9 +9,9 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/m2m2types/ent" - "github.com/facebook/ent/examples/m2m2types/ent/group" - "github.com/facebook/ent/examples/m2m2types/ent/user" + "entgo.io/ent/examples/m2m2types/ent" + "entgo.io/ent/examples/m2m2types/ent/group" + "entgo.io/ent/examples/m2m2types/ent/user" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/m2mbidi/ent/client.go b/examples/m2mbidi/ent/client.go index 59d94d411..ac034bfe6 100644 --- a/examples/m2mbidi/ent/client.go +++ b/examples/m2mbidi/ent/client.go @@ -11,13 +11,13 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/m2mbidi/ent/migrate" + "entgo.io/ent/examples/m2mbidi/ent/migrate" - "github.com/facebook/ent/examples/m2mbidi/ent/user" + "entgo.io/ent/examples/m2mbidi/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/m2mbidi/ent/config.go b/examples/m2mbidi/ent/config.go index 97712c973..461de3d8d 100644 --- a/examples/m2mbidi/ent/config.go +++ b/examples/m2mbidi/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/m2mbidi/ent/ent.go b/examples/m2mbidi/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/m2mbidi/ent/ent.go +++ b/examples/m2mbidi/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/m2mbidi/ent/enttest/enttest.go b/examples/m2mbidi/ent/enttest/enttest.go index d6dce2970..6555fe5bc 100644 --- a/examples/m2mbidi/ent/enttest/enttest.go +++ b/examples/m2mbidi/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/m2mbidi/ent" + "entgo.io/ent/examples/m2mbidi/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/m2mbidi/ent/runtime" + _ "entgo.io/ent/examples/m2mbidi/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/m2mbidi/ent/generate.go b/examples/m2mbidi/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/m2mbidi/ent/generate.go +++ b/examples/m2mbidi/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/m2mbidi/ent/hook/hook.go b/examples/m2mbidi/ent/hook/hook.go index da65a7346..bb7556e42 100644 --- a/examples/m2mbidi/ent/hook/hook.go +++ b/examples/m2mbidi/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/m2mbidi/ent" + "entgo.io/ent/examples/m2mbidi/ent" ) // The UserFunc type is an adapter to allow the use of ordinary diff --git a/examples/m2mbidi/ent/migrate/migrate.go b/examples/m2mbidi/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/m2mbidi/ent/migrate/migrate.go +++ b/examples/m2mbidi/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/m2mbidi/ent/migrate/schema.go b/examples/m2mbidi/ent/migrate/schema.go index d2e423a50..68be6322d 100644 --- a/examples/m2mbidi/ent/migrate/schema.go +++ b/examples/m2mbidi/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/m2mbidi/ent/mutation.go b/examples/m2mbidi/ent/mutation.go index 1af2c100a..cc62ab6b5 100644 --- a/examples/m2mbidi/ent/mutation.go +++ b/examples/m2mbidi/ent/mutation.go @@ -11,10 +11,10 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/m2mbidi/ent/predicate" - "github.com/facebook/ent/examples/m2mbidi/ent/user" + "entgo.io/ent/examples/m2mbidi/ent/predicate" + "entgo.io/ent/examples/m2mbidi/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/m2mbidi/ent/predicate/predicate.go b/examples/m2mbidi/ent/predicate/predicate.go index 5df743681..e8922f489 100644 --- a/examples/m2mbidi/ent/predicate/predicate.go +++ b/examples/m2mbidi/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // User is the predicate function for user builders. diff --git a/examples/m2mbidi/ent/runtime/runtime.go b/examples/m2mbidi/ent/runtime/runtime.go index 24a7bce7e..67ff5b7c8 100644 --- a/examples/m2mbidi/ent/runtime/runtime.go +++ b/examples/m2mbidi/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/m2mbidi/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/m2mbidi/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/m2mbidi/ent/schema/user.go b/examples/m2mbidi/ent/schema/user.go index 466631678..56f795090 100644 --- a/examples/m2mbidi/ent/schema/user.go +++ b/examples/m2mbidi/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/m2mbidi/ent/tx.go b/examples/m2mbidi/ent/tx.go index 1f608018b..f3aaeb4de 100644 --- a/examples/m2mbidi/ent/tx.go +++ b/examples/m2mbidi/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/m2mbidi/ent/user.go b/examples/m2mbidi/ent/user.go index 1aad90fd1..1f7922232 100644 --- a/examples/m2mbidi/ent/user.go +++ b/examples/m2mbidi/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/m2mbidi/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/m2mbidi/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/m2mbidi/ent/user/where.go b/examples/m2mbidi/ent/user/where.go index f8d1ef295..dd323f707 100644 --- a/examples/m2mbidi/ent/user/where.go +++ b/examples/m2mbidi/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mbidi/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mbidi/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/m2mbidi/ent/user_create.go b/examples/m2mbidi/ent/user_create.go index b9949738c..b25bf6bfe 100644 --- a/examples/m2mbidi/ent/user_create.go +++ b/examples/m2mbidi/ent/user_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mbidi/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mbidi/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/m2mbidi/ent/user_delete.go b/examples/m2mbidi/ent/user_delete.go index 57ffd36f7..6e1d342c0 100644 --- a/examples/m2mbidi/ent/user_delete.go +++ b/examples/m2mbidi/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mbidi/ent/predicate" - "github.com/facebook/ent/examples/m2mbidi/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mbidi/ent/predicate" + "entgo.io/ent/examples/m2mbidi/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/m2mbidi/ent/user_query.go b/examples/m2mbidi/ent/user_query.go index 9b3f2660b..7a82b7555 100644 --- a/examples/m2mbidi/ent/user_query.go +++ b/examples/m2mbidi/ent/user_query.go @@ -13,11 +13,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mbidi/ent/predicate" - "github.com/facebook/ent/examples/m2mbidi/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mbidi/ent/predicate" + "entgo.io/ent/examples/m2mbidi/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/m2mbidi/ent/user_update.go b/examples/m2mbidi/ent/user_update.go index 8510cb6cb..07da11ade 100644 --- a/examples/m2mbidi/ent/user_update.go +++ b/examples/m2mbidi/ent/user_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mbidi/ent/predicate" - "github.com/facebook/ent/examples/m2mbidi/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mbidi/ent/predicate" + "entgo.io/ent/examples/m2mbidi/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/m2mbidi/example_test.go b/examples/m2mbidi/example_test.go index 9ba3e0de6..9dbae4c4d 100644 --- a/examples/m2mbidi/example_test.go +++ b/examples/m2mbidi/example_test.go @@ -9,8 +9,8 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/m2mbidi/ent" - "github.com/facebook/ent/examples/m2mbidi/ent/user" + "entgo.io/ent/examples/m2mbidi/ent" + "entgo.io/ent/examples/m2mbidi/ent/user" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/m2mrecur/ent/client.go b/examples/m2mrecur/ent/client.go index 275f1800d..f1915bc59 100644 --- a/examples/m2mrecur/ent/client.go +++ b/examples/m2mrecur/ent/client.go @@ -11,13 +11,13 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/m2mrecur/ent/migrate" + "entgo.io/ent/examples/m2mrecur/ent/migrate" - "github.com/facebook/ent/examples/m2mrecur/ent/user" + "entgo.io/ent/examples/m2mrecur/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/m2mrecur/ent/config.go b/examples/m2mrecur/ent/config.go index 97712c973..461de3d8d 100644 --- a/examples/m2mrecur/ent/config.go +++ b/examples/m2mrecur/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/m2mrecur/ent/ent.go b/examples/m2mrecur/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/m2mrecur/ent/ent.go +++ b/examples/m2mrecur/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/m2mrecur/ent/enttest/enttest.go b/examples/m2mrecur/ent/enttest/enttest.go index 79810fb22..d05d27c9a 100644 --- a/examples/m2mrecur/ent/enttest/enttest.go +++ b/examples/m2mrecur/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/m2mrecur/ent" + "entgo.io/ent/examples/m2mrecur/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/m2mrecur/ent/runtime" + _ "entgo.io/ent/examples/m2mrecur/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/m2mrecur/ent/generate.go b/examples/m2mrecur/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/m2mrecur/ent/generate.go +++ b/examples/m2mrecur/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/m2mrecur/ent/hook/hook.go b/examples/m2mrecur/ent/hook/hook.go index 0a772b426..0a03f5795 100644 --- a/examples/m2mrecur/ent/hook/hook.go +++ b/examples/m2mrecur/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/m2mrecur/ent" + "entgo.io/ent/examples/m2mrecur/ent" ) // The UserFunc type is an adapter to allow the use of ordinary diff --git a/examples/m2mrecur/ent/migrate/migrate.go b/examples/m2mrecur/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/m2mrecur/ent/migrate/migrate.go +++ b/examples/m2mrecur/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/m2mrecur/ent/migrate/schema.go b/examples/m2mrecur/ent/migrate/schema.go index c09b614b3..2e59e50dc 100644 --- a/examples/m2mrecur/ent/migrate/schema.go +++ b/examples/m2mrecur/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/m2mrecur/ent/mutation.go b/examples/m2mrecur/ent/mutation.go index 0ddc162af..c03d615b9 100644 --- a/examples/m2mrecur/ent/mutation.go +++ b/examples/m2mrecur/ent/mutation.go @@ -11,10 +11,10 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/m2mrecur/ent/predicate" - "github.com/facebook/ent/examples/m2mrecur/ent/user" + "entgo.io/ent/examples/m2mrecur/ent/predicate" + "entgo.io/ent/examples/m2mrecur/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/m2mrecur/ent/predicate/predicate.go b/examples/m2mrecur/ent/predicate/predicate.go index 5df743681..e8922f489 100644 --- a/examples/m2mrecur/ent/predicate/predicate.go +++ b/examples/m2mrecur/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // User is the predicate function for user builders. diff --git a/examples/m2mrecur/ent/runtime/runtime.go b/examples/m2mrecur/ent/runtime/runtime.go index 7cfdd71e5..70567619e 100644 --- a/examples/m2mrecur/ent/runtime/runtime.go +++ b/examples/m2mrecur/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/m2mrecur/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/m2mrecur/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/m2mrecur/ent/schema/user.go b/examples/m2mrecur/ent/schema/user.go index 5b6279622..595745c51 100644 --- a/examples/m2mrecur/ent/schema/user.go +++ b/examples/m2mrecur/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/m2mrecur/ent/tx.go b/examples/m2mrecur/ent/tx.go index 1f608018b..f3aaeb4de 100644 --- a/examples/m2mrecur/ent/tx.go +++ b/examples/m2mrecur/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/m2mrecur/ent/user.go b/examples/m2mrecur/ent/user.go index d0b2709d7..c17279afb 100644 --- a/examples/m2mrecur/ent/user.go +++ b/examples/m2mrecur/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/m2mrecur/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/m2mrecur/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/m2mrecur/ent/user/where.go b/examples/m2mrecur/ent/user/where.go index bc74fe055..c95489ad1 100644 --- a/examples/m2mrecur/ent/user/where.go +++ b/examples/m2mrecur/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mrecur/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mrecur/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/m2mrecur/ent/user_create.go b/examples/m2mrecur/ent/user_create.go index b3210733e..b4c3d3f4a 100644 --- a/examples/m2mrecur/ent/user_create.go +++ b/examples/m2mrecur/ent/user_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mrecur/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mrecur/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/m2mrecur/ent/user_delete.go b/examples/m2mrecur/ent/user_delete.go index 0ba787071..93fe03829 100644 --- a/examples/m2mrecur/ent/user_delete.go +++ b/examples/m2mrecur/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mrecur/ent/predicate" - "github.com/facebook/ent/examples/m2mrecur/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mrecur/ent/predicate" + "entgo.io/ent/examples/m2mrecur/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/m2mrecur/ent/user_query.go b/examples/m2mrecur/ent/user_query.go index f46c8cb1d..3e78e293f 100644 --- a/examples/m2mrecur/ent/user_query.go +++ b/examples/m2mrecur/ent/user_query.go @@ -13,11 +13,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mrecur/ent/predicate" - "github.com/facebook/ent/examples/m2mrecur/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mrecur/ent/predicate" + "entgo.io/ent/examples/m2mrecur/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/m2mrecur/ent/user_update.go b/examples/m2mrecur/ent/user_update.go index 03931fc3c..58b690e89 100644 --- a/examples/m2mrecur/ent/user_update.go +++ b/examples/m2mrecur/ent/user_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/m2mrecur/ent/predicate" - "github.com/facebook/ent/examples/m2mrecur/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/m2mrecur/ent/predicate" + "entgo.io/ent/examples/m2mrecur/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/m2mrecur/example_test.go b/examples/m2mrecur/example_test.go index 9b13c66b9..ea271e413 100644 --- a/examples/m2mrecur/example_test.go +++ b/examples/m2mrecur/example_test.go @@ -9,9 +9,9 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/m2mrecur/ent/user" + "entgo.io/ent/examples/m2mrecur/ent/user" - "github.com/facebook/ent/examples/m2mrecur/ent" + "entgo.io/ent/examples/m2mrecur/ent" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/o2m2types/ent/client.go b/examples/o2m2types/ent/client.go index 540ce35d5..2811e162c 100644 --- a/examples/o2m2types/ent/client.go +++ b/examples/o2m2types/ent/client.go @@ -11,14 +11,14 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2m2types/ent/migrate" + "entgo.io/ent/examples/o2m2types/ent/migrate" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/user" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/o2m2types/ent/config.go b/examples/o2m2types/ent/config.go index 902878275..b9c50fcd2 100644 --- a/examples/o2m2types/ent/config.go +++ b/examples/o2m2types/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/o2m2types/ent/ent.go b/examples/o2m2types/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/o2m2types/ent/ent.go +++ b/examples/o2m2types/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/o2m2types/ent/enttest/enttest.go b/examples/o2m2types/ent/enttest/enttest.go index ca7dfa589..7946fda24 100644 --- a/examples/o2m2types/ent/enttest/enttest.go +++ b/examples/o2m2types/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/o2m2types/ent" + "entgo.io/ent/examples/o2m2types/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/o2m2types/ent/runtime" + _ "entgo.io/ent/examples/o2m2types/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/o2m2types/ent/generate.go b/examples/o2m2types/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/o2m2types/ent/generate.go +++ b/examples/o2m2types/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/o2m2types/ent/hook/hook.go b/examples/o2m2types/ent/hook/hook.go index b43c580ff..69fb0f4d1 100644 --- a/examples/o2m2types/ent/hook/hook.go +++ b/examples/o2m2types/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/o2m2types/ent" + "entgo.io/ent/examples/o2m2types/ent" ) // The PetFunc type is an adapter to allow the use of ordinary diff --git a/examples/o2m2types/ent/migrate/migrate.go b/examples/o2m2types/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/o2m2types/ent/migrate/migrate.go +++ b/examples/o2m2types/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/o2m2types/ent/migrate/schema.go b/examples/o2m2types/ent/migrate/schema.go index 4a3f4d8f0..aa596ed9b 100644 --- a/examples/o2m2types/ent/migrate/schema.go +++ b/examples/o2m2types/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/o2m2types/ent/mutation.go b/examples/o2m2types/ent/mutation.go index fbff31223..153e59d1d 100644 --- a/examples/o2m2types/ent/mutation.go +++ b/examples/o2m2types/ent/mutation.go @@ -11,11 +11,11 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" - "github.com/facebook/ent/examples/o2m2types/ent/user" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/o2m2types/ent/pet.go b/examples/o2m2types/ent/pet.go index 34ff98bb6..c09963ee0 100644 --- a/examples/o2m2types/ent/pet.go +++ b/examples/o2m2types/ent/pet.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/user" ) // Pet is the model entity for the Pet schema. diff --git a/examples/o2m2types/ent/pet/where.go b/examples/o2m2types/ent/pet/where.go index 595a03bb3..d37f9f87c 100644 --- a/examples/o2m2types/ent/pet/where.go +++ b/examples/o2m2types/ent/pet/where.go @@ -7,9 +7,9 @@ package pet import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/o2m2types/ent/pet_create.go b/examples/o2m2types/ent/pet_create.go index 4ee64d933..c9441eb6b 100644 --- a/examples/o2m2types/ent/pet_create.go +++ b/examples/o2m2types/ent/pet_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/user" + "entgo.io/ent/schema/field" ) // PetCreate is the builder for creating a Pet entity. diff --git a/examples/o2m2types/ent/pet_delete.go b/examples/o2m2types/ent/pet_delete.go index cb31613c3..acff850ac 100644 --- a/examples/o2m2types/ent/pet_delete.go +++ b/examples/o2m2types/ent/pet_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/schema/field" ) // PetDelete is the builder for deleting a Pet entity. diff --git a/examples/o2m2types/ent/pet_query.go b/examples/o2m2types/ent/pet_query.go index 41755a4ce..eea9180ba 100644 --- a/examples/o2m2types/ent/pet_query.go +++ b/examples/o2m2types/ent/pet_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" - "github.com/facebook/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/examples/o2m2types/ent/user" + "entgo.io/ent/schema/field" ) // PetQuery is the builder for querying Pet entities. diff --git a/examples/o2m2types/ent/pet_update.go b/examples/o2m2types/ent/pet_update.go index 3017c5469..c955c7bdc 100644 --- a/examples/o2m2types/ent/pet_update.go +++ b/examples/o2m2types/ent/pet_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" - "github.com/facebook/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/examples/o2m2types/ent/user" + "entgo.io/ent/schema/field" ) // PetUpdate is the builder for updating Pet entities. diff --git a/examples/o2m2types/ent/predicate/predicate.go b/examples/o2m2types/ent/predicate/predicate.go index 246c29609..47fcb055b 100644 --- a/examples/o2m2types/ent/predicate/predicate.go +++ b/examples/o2m2types/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Pet is the predicate function for pet builders. diff --git a/examples/o2m2types/ent/runtime/runtime.go b/examples/o2m2types/ent/runtime/runtime.go index 37e3e8803..f8c9be0a5 100644 --- a/examples/o2m2types/ent/runtime/runtime.go +++ b/examples/o2m2types/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/o2m2types/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/o2m2types/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/o2m2types/ent/schema/pet.go b/examples/o2m2types/ent/schema/pet.go index 942453ed6..8379d3218 100644 --- a/examples/o2m2types/ent/schema/pet.go +++ b/examples/o2m2types/ent/schema/pet.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Pet holds the schema definition for the Pet entity. diff --git a/examples/o2m2types/ent/schema/user.go b/examples/o2m2types/ent/schema/user.go index 9e39f543f..13521c4ae 100644 --- a/examples/o2m2types/ent/schema/user.go +++ b/examples/o2m2types/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/o2m2types/ent/tx.go b/examples/o2m2types/ent/tx.go index b6fbc5f68..07bf12a2e 100644 --- a/examples/o2m2types/ent/tx.go +++ b/examples/o2m2types/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/o2m2types/ent/user.go b/examples/o2m2types/ent/user.go index c2c6c45e0..dbda416fa 100644 --- a/examples/o2m2types/ent/user.go +++ b/examples/o2m2types/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/o2m2types/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/o2m2types/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/o2m2types/ent/user/where.go b/examples/o2m2types/ent/user/where.go index 5077b8688..9b6e4e104 100644 --- a/examples/o2m2types/ent/user/where.go +++ b/examples/o2m2types/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/o2m2types/ent/user_create.go b/examples/o2m2types/ent/user_create.go index bd0d781ac..0b42c4850 100644 --- a/examples/o2m2types/ent/user_create.go +++ b/examples/o2m2types/ent/user_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/o2m2types/ent/user_delete.go b/examples/o2m2types/ent/user_delete.go index 6a4420a13..e2da162c1 100644 --- a/examples/o2m2types/ent/user_delete.go +++ b/examples/o2m2types/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" - "github.com/facebook/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/examples/o2m2types/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/o2m2types/ent/user_query.go b/examples/o2m2types/ent/user_query.go index 397076f89..6aa46ae25 100644 --- a/examples/o2m2types/ent/user_query.go +++ b/examples/o2m2types/ent/user_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" - "github.com/facebook/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/examples/o2m2types/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/o2m2types/ent/user_update.go b/examples/o2m2types/ent/user_update.go index 163d2935e..328ecfbcf 100644 --- a/examples/o2m2types/ent/user_update.go +++ b/examples/o2m2types/ent/user_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2m2types/ent/pet" - "github.com/facebook/ent/examples/o2m2types/ent/predicate" - "github.com/facebook/ent/examples/o2m2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2m2types/ent/pet" + "entgo.io/ent/examples/o2m2types/ent/predicate" + "entgo.io/ent/examples/o2m2types/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/o2m2types/example_test.go b/examples/o2m2types/example_test.go index 743fa5ca1..2c2de9d9c 100644 --- a/examples/o2m2types/example_test.go +++ b/examples/o2m2types/example_test.go @@ -9,7 +9,7 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2m2types/ent" + "entgo.io/ent/examples/o2m2types/ent" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/o2mrecur/ent/client.go b/examples/o2mrecur/ent/client.go index 603081143..de07ff877 100644 --- a/examples/o2mrecur/ent/client.go +++ b/examples/o2mrecur/ent/client.go @@ -11,13 +11,13 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2mrecur/ent/migrate" + "entgo.io/ent/examples/o2mrecur/ent/migrate" - "github.com/facebook/ent/examples/o2mrecur/ent/node" + "entgo.io/ent/examples/o2mrecur/ent/node" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/o2mrecur/ent/config.go b/examples/o2mrecur/ent/config.go index f3edcf5ff..b84dab905 100644 --- a/examples/o2mrecur/ent/config.go +++ b/examples/o2mrecur/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/o2mrecur/ent/ent.go b/examples/o2mrecur/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/o2mrecur/ent/ent.go +++ b/examples/o2mrecur/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/o2mrecur/ent/enttest/enttest.go b/examples/o2mrecur/ent/enttest/enttest.go index e03895fb2..ec3b5e531 100644 --- a/examples/o2mrecur/ent/enttest/enttest.go +++ b/examples/o2mrecur/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/o2mrecur/ent" + "entgo.io/ent/examples/o2mrecur/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/o2mrecur/ent/runtime" + _ "entgo.io/ent/examples/o2mrecur/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/o2mrecur/ent/generate.go b/examples/o2mrecur/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/o2mrecur/ent/generate.go +++ b/examples/o2mrecur/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/o2mrecur/ent/hook/hook.go b/examples/o2mrecur/ent/hook/hook.go index 9f2202359..fbae4aa51 100644 --- a/examples/o2mrecur/ent/hook/hook.go +++ b/examples/o2mrecur/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/o2mrecur/ent" + "entgo.io/ent/examples/o2mrecur/ent" ) // The NodeFunc type is an adapter to allow the use of ordinary diff --git a/examples/o2mrecur/ent/migrate/migrate.go b/examples/o2mrecur/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/o2mrecur/ent/migrate/migrate.go +++ b/examples/o2mrecur/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/o2mrecur/ent/migrate/schema.go b/examples/o2mrecur/ent/migrate/schema.go index 9ace643a7..bf2c61288 100644 --- a/examples/o2mrecur/ent/migrate/schema.go +++ b/examples/o2mrecur/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/o2mrecur/ent/mutation.go b/examples/o2mrecur/ent/mutation.go index 13e09e364..178a55dae 100644 --- a/examples/o2mrecur/ent/mutation.go +++ b/examples/o2mrecur/ent/mutation.go @@ -11,10 +11,10 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/o2mrecur/ent/node" - "github.com/facebook/ent/examples/o2mrecur/ent/predicate" + "entgo.io/ent/examples/o2mrecur/ent/node" + "entgo.io/ent/examples/o2mrecur/ent/predicate" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/o2mrecur/ent/node.go b/examples/o2mrecur/ent/node.go index 624f526ca..c7660cdab 100644 --- a/examples/o2mrecur/ent/node.go +++ b/examples/o2mrecur/ent/node.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/o2mrecur/ent/node" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/o2mrecur/ent/node" ) // Node is the model entity for the Node schema. diff --git a/examples/o2mrecur/ent/node/where.go b/examples/o2mrecur/ent/node/where.go index 4d745c760..39cf3172e 100644 --- a/examples/o2mrecur/ent/node/where.go +++ b/examples/o2mrecur/ent/node/where.go @@ -7,9 +7,9 @@ package node import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2mrecur/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2mrecur/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/o2mrecur/ent/node_create.go b/examples/o2mrecur/ent/node_create.go index 2fa8c5c2a..f5fab1bd2 100644 --- a/examples/o2mrecur/ent/node_create.go +++ b/examples/o2mrecur/ent/node_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2mrecur/ent/node" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2mrecur/ent/node" + "entgo.io/ent/schema/field" ) // NodeCreate is the builder for creating a Node entity. diff --git a/examples/o2mrecur/ent/node_delete.go b/examples/o2mrecur/ent/node_delete.go index 6fa65930c..4ca9b01b9 100644 --- a/examples/o2mrecur/ent/node_delete.go +++ b/examples/o2mrecur/ent/node_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2mrecur/ent/node" - "github.com/facebook/ent/examples/o2mrecur/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2mrecur/ent/node" + "entgo.io/ent/examples/o2mrecur/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeDelete is the builder for deleting a Node entity. diff --git a/examples/o2mrecur/ent/node_query.go b/examples/o2mrecur/ent/node_query.go index d359453ec..fb306561a 100644 --- a/examples/o2mrecur/ent/node_query.go +++ b/examples/o2mrecur/ent/node_query.go @@ -13,11 +13,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2mrecur/ent/node" - "github.com/facebook/ent/examples/o2mrecur/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2mrecur/ent/node" + "entgo.io/ent/examples/o2mrecur/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeQuery is the builder for querying Node entities. diff --git a/examples/o2mrecur/ent/node_update.go b/examples/o2mrecur/ent/node_update.go index fa8dc7254..49ab8be75 100644 --- a/examples/o2mrecur/ent/node_update.go +++ b/examples/o2mrecur/ent/node_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2mrecur/ent/node" - "github.com/facebook/ent/examples/o2mrecur/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2mrecur/ent/node" + "entgo.io/ent/examples/o2mrecur/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeUpdate is the builder for updating Node entities. diff --git a/examples/o2mrecur/ent/predicate/predicate.go b/examples/o2mrecur/ent/predicate/predicate.go index 6ee494e88..00cdc2199 100644 --- a/examples/o2mrecur/ent/predicate/predicate.go +++ b/examples/o2mrecur/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Node is the predicate function for node builders. diff --git a/examples/o2mrecur/ent/runtime/runtime.go b/examples/o2mrecur/ent/runtime/runtime.go index 1814e2ef8..4742fabd2 100644 --- a/examples/o2mrecur/ent/runtime/runtime.go +++ b/examples/o2mrecur/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/o2mrecur/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/o2mrecur/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/o2mrecur/ent/schema/node.go b/examples/o2mrecur/ent/schema/node.go index f0c2ffb81..06d3ff512 100644 --- a/examples/o2mrecur/ent/schema/node.go +++ b/examples/o2mrecur/ent/schema/node.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Node holds the schema definition for the Node entity. diff --git a/examples/o2mrecur/ent/tx.go b/examples/o2mrecur/ent/tx.go index 825f1d6c2..cfec157c8 100644 --- a/examples/o2mrecur/ent/tx.go +++ b/examples/o2mrecur/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/o2mrecur/example_test.go b/examples/o2mrecur/example_test.go index 9798a075d..975d24764 100644 --- a/examples/o2mrecur/example_test.go +++ b/examples/o2mrecur/example_test.go @@ -9,8 +9,8 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2mrecur/ent" - "github.com/facebook/ent/examples/o2mrecur/ent/node" + "entgo.io/ent/examples/o2mrecur/ent" + "entgo.io/ent/examples/o2mrecur/ent/node" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/o2o2types/ent/card.go b/examples/o2o2types/ent/card.go index 85ec10d07..2bac5bf45 100644 --- a/examples/o2o2types/ent/card.go +++ b/examples/o2o2types/ent/card.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/user" ) // Card is the model entity for the Card schema. diff --git a/examples/o2o2types/ent/card/where.go b/examples/o2o2types/ent/card/where.go index 18fb1a077..3b8322a6a 100644 --- a/examples/o2o2types/ent/card/where.go +++ b/examples/o2o2types/ent/card/where.go @@ -9,9 +9,9 @@ package card import ( "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/o2o2types/ent/card_create.go b/examples/o2o2types/ent/card_create.go index 1c66f6cf5..db32fd385 100644 --- a/examples/o2o2types/ent/card_create.go +++ b/examples/o2o2types/ent/card_create.go @@ -12,10 +12,10 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/user" + "entgo.io/ent/schema/field" ) // CardCreate is the builder for creating a Card entity. diff --git a/examples/o2o2types/ent/card_delete.go b/examples/o2o2types/ent/card_delete.go index 8ba785131..f9bba75aa 100644 --- a/examples/o2o2types/ent/card_delete.go +++ b/examples/o2o2types/ent/card_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/schema/field" ) // CardDelete is the builder for deleting a Card entity. diff --git a/examples/o2o2types/ent/card_query.go b/examples/o2o2types/ent/card_query.go index 111d9c91f..f59f932f0 100644 --- a/examples/o2o2types/ent/card_query.go +++ b/examples/o2o2types/ent/card_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" - "github.com/facebook/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/examples/o2o2types/ent/user" + "entgo.io/ent/schema/field" ) // CardQuery is the builder for querying Card entities. diff --git a/examples/o2o2types/ent/card_update.go b/examples/o2o2types/ent/card_update.go index b5808d8e2..290a69979 100644 --- a/examples/o2o2types/ent/card_update.go +++ b/examples/o2o2types/ent/card_update.go @@ -12,12 +12,12 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" - "github.com/facebook/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/examples/o2o2types/ent/user" + "entgo.io/ent/schema/field" ) // CardUpdate is the builder for updating Card entities. diff --git a/examples/o2o2types/ent/client.go b/examples/o2o2types/ent/client.go index 8cc81b899..948ba4de9 100644 --- a/examples/o2o2types/ent/client.go +++ b/examples/o2o2types/ent/client.go @@ -11,14 +11,14 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2o2types/ent/migrate" + "entgo.io/ent/examples/o2o2types/ent/migrate" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/user" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/o2o2types/ent/config.go b/examples/o2o2types/ent/config.go index d13bbb793..8528e3819 100644 --- a/examples/o2o2types/ent/config.go +++ b/examples/o2o2types/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/o2o2types/ent/ent.go b/examples/o2o2types/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/o2o2types/ent/ent.go +++ b/examples/o2o2types/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/o2o2types/ent/enttest/enttest.go b/examples/o2o2types/ent/enttest/enttest.go index ceb369686..3baffba84 100644 --- a/examples/o2o2types/ent/enttest/enttest.go +++ b/examples/o2o2types/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/o2o2types/ent" + "entgo.io/ent/examples/o2o2types/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/o2o2types/ent/runtime" + _ "entgo.io/ent/examples/o2o2types/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/o2o2types/ent/generate.go b/examples/o2o2types/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/o2o2types/ent/generate.go +++ b/examples/o2o2types/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/o2o2types/ent/hook/hook.go b/examples/o2o2types/ent/hook/hook.go index 83f0a2891..4f178dffc 100644 --- a/examples/o2o2types/ent/hook/hook.go +++ b/examples/o2o2types/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/o2o2types/ent" + "entgo.io/ent/examples/o2o2types/ent" ) // The CardFunc type is an adapter to allow the use of ordinary diff --git a/examples/o2o2types/ent/migrate/migrate.go b/examples/o2o2types/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/o2o2types/ent/migrate/migrate.go +++ b/examples/o2o2types/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/o2o2types/ent/migrate/schema.go b/examples/o2o2types/ent/migrate/schema.go index 731e5edbf..aa41d549f 100644 --- a/examples/o2o2types/ent/migrate/schema.go +++ b/examples/o2o2types/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/o2o2types/ent/mutation.go b/examples/o2o2types/ent/mutation.go index 5d6df302e..cd0cb171f 100644 --- a/examples/o2o2types/ent/mutation.go +++ b/examples/o2o2types/ent/mutation.go @@ -12,11 +12,11 @@ import ( "sync" "time" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" - "github.com/facebook/ent/examples/o2o2types/ent/user" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/o2o2types/ent/predicate/predicate.go b/examples/o2o2types/ent/predicate/predicate.go index 1754de615..3fa8c0c45 100644 --- a/examples/o2o2types/ent/predicate/predicate.go +++ b/examples/o2o2types/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Card is the predicate function for card builders. diff --git a/examples/o2o2types/ent/runtime/runtime.go b/examples/o2o2types/ent/runtime/runtime.go index 28348b552..6affc7f17 100644 --- a/examples/o2o2types/ent/runtime/runtime.go +++ b/examples/o2o2types/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/o2o2types/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/o2o2types/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/o2o2types/ent/schema/card.go b/examples/o2o2types/ent/schema/card.go index 3ef4b1370..437195350 100644 --- a/examples/o2o2types/ent/schema/card.go +++ b/examples/o2o2types/ent/schema/card.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Card holds the schema definition for the Card entity. diff --git a/examples/o2o2types/ent/schema/user.go b/examples/o2o2types/ent/schema/user.go index 6c26ff4a6..5f20ee0fc 100644 --- a/examples/o2o2types/ent/schema/user.go +++ b/examples/o2o2types/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/o2o2types/ent/tx.go b/examples/o2o2types/ent/tx.go index 5ed22bb3e..300036ce5 100644 --- a/examples/o2o2types/ent/tx.go +++ b/examples/o2o2types/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/o2o2types/ent/user.go b/examples/o2o2types/ent/user.go index bab8e88a6..afcf406bf 100644 --- a/examples/o2o2types/ent/user.go +++ b/examples/o2o2types/ent/user.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/o2o2types/ent/user/where.go b/examples/o2o2types/ent/user/where.go index 0b4577948..0a73aed05 100644 --- a/examples/o2o2types/ent/user/where.go +++ b/examples/o2o2types/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/o2o2types/ent/user_create.go b/examples/o2o2types/ent/user_create.go index 627adbba4..3f7e1e0c9 100644 --- a/examples/o2o2types/ent/user_create.go +++ b/examples/o2o2types/ent/user_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/o2o2types/ent/user_delete.go b/examples/o2o2types/ent/user_delete.go index 786933dc6..8295dbaee 100644 --- a/examples/o2o2types/ent/user_delete.go +++ b/examples/o2o2types/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" - "github.com/facebook/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/examples/o2o2types/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/o2o2types/ent/user_query.go b/examples/o2o2types/ent/user_query.go index 3fac1525e..d660ca5bb 100644 --- a/examples/o2o2types/ent/user_query.go +++ b/examples/o2o2types/ent/user_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" - "github.com/facebook/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/examples/o2o2types/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/o2o2types/ent/user_update.go b/examples/o2o2types/ent/user_update.go index e48188854..4de26c025 100644 --- a/examples/o2o2types/ent/user_update.go +++ b/examples/o2o2types/ent/user_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2o2types/ent/card" - "github.com/facebook/ent/examples/o2o2types/ent/predicate" - "github.com/facebook/ent/examples/o2o2types/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2o2types/ent/card" + "entgo.io/ent/examples/o2o2types/ent/predicate" + "entgo.io/ent/examples/o2o2types/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/o2o2types/example_test.go b/examples/o2o2types/example_test.go index 8df8514b0..09fc0e839 100644 --- a/examples/o2o2types/example_test.go +++ b/examples/o2o2types/example_test.go @@ -10,7 +10,7 @@ import ( "log" "time" - "github.com/facebook/ent/examples/o2o2types/ent" + "entgo.io/ent/examples/o2o2types/ent" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/o2obidi/ent/client.go b/examples/o2obidi/ent/client.go index 2de5286f6..3c9ea632c 100644 --- a/examples/o2obidi/ent/client.go +++ b/examples/o2obidi/ent/client.go @@ -11,13 +11,13 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2obidi/ent/migrate" + "entgo.io/ent/examples/o2obidi/ent/migrate" - "github.com/facebook/ent/examples/o2obidi/ent/user" + "entgo.io/ent/examples/o2obidi/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/o2obidi/ent/config.go b/examples/o2obidi/ent/config.go index 97712c973..461de3d8d 100644 --- a/examples/o2obidi/ent/config.go +++ b/examples/o2obidi/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/o2obidi/ent/ent.go b/examples/o2obidi/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/o2obidi/ent/ent.go +++ b/examples/o2obidi/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/o2obidi/ent/enttest/enttest.go b/examples/o2obidi/ent/enttest/enttest.go index f94938bf6..7a174a9b4 100644 --- a/examples/o2obidi/ent/enttest/enttest.go +++ b/examples/o2obidi/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/o2obidi/ent" + "entgo.io/ent/examples/o2obidi/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/o2obidi/ent/runtime" + _ "entgo.io/ent/examples/o2obidi/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/o2obidi/ent/generate.go b/examples/o2obidi/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/o2obidi/ent/generate.go +++ b/examples/o2obidi/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/o2obidi/ent/hook/hook.go b/examples/o2obidi/ent/hook/hook.go index 0f38f6697..8706028d1 100644 --- a/examples/o2obidi/ent/hook/hook.go +++ b/examples/o2obidi/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/o2obidi/ent" + "entgo.io/ent/examples/o2obidi/ent" ) // The UserFunc type is an adapter to allow the use of ordinary diff --git a/examples/o2obidi/ent/migrate/migrate.go b/examples/o2obidi/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/o2obidi/ent/migrate/migrate.go +++ b/examples/o2obidi/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/o2obidi/ent/migrate/schema.go b/examples/o2obidi/ent/migrate/schema.go index 2a1250ac0..e6da6cdd4 100644 --- a/examples/o2obidi/ent/migrate/schema.go +++ b/examples/o2obidi/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/o2obidi/ent/mutation.go b/examples/o2obidi/ent/mutation.go index e25a51251..2cb0b5d42 100644 --- a/examples/o2obidi/ent/mutation.go +++ b/examples/o2obidi/ent/mutation.go @@ -11,10 +11,10 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/o2obidi/ent/predicate" - "github.com/facebook/ent/examples/o2obidi/ent/user" + "entgo.io/ent/examples/o2obidi/ent/predicate" + "entgo.io/ent/examples/o2obidi/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/o2obidi/ent/predicate/predicate.go b/examples/o2obidi/ent/predicate/predicate.go index 5df743681..e8922f489 100644 --- a/examples/o2obidi/ent/predicate/predicate.go +++ b/examples/o2obidi/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // User is the predicate function for user builders. diff --git a/examples/o2obidi/ent/runtime/runtime.go b/examples/o2obidi/ent/runtime/runtime.go index 212970516..8ab9f9284 100644 --- a/examples/o2obidi/ent/runtime/runtime.go +++ b/examples/o2obidi/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/o2obidi/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/o2obidi/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/o2obidi/ent/schema/user.go b/examples/o2obidi/ent/schema/user.go index 1cb3c5213..d0e22ceb3 100644 --- a/examples/o2obidi/ent/schema/user.go +++ b/examples/o2obidi/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/o2obidi/ent/tx.go b/examples/o2obidi/ent/tx.go index 1f608018b..f3aaeb4de 100644 --- a/examples/o2obidi/ent/tx.go +++ b/examples/o2obidi/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/o2obidi/ent/user.go b/examples/o2obidi/ent/user.go index 8c68b2927..689bd0d55 100644 --- a/examples/o2obidi/ent/user.go +++ b/examples/o2obidi/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/o2obidi/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/o2obidi/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/o2obidi/ent/user/where.go b/examples/o2obidi/ent/user/where.go index c205a8d7d..b00574f66 100644 --- a/examples/o2obidi/ent/user/where.go +++ b/examples/o2obidi/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2obidi/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2obidi/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/o2obidi/ent/user_create.go b/examples/o2obidi/ent/user_create.go index a15ec8f55..e00614d4f 100644 --- a/examples/o2obidi/ent/user_create.go +++ b/examples/o2obidi/ent/user_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2obidi/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2obidi/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/o2obidi/ent/user_delete.go b/examples/o2obidi/ent/user_delete.go index 8c3c4c65c..7e8626155 100644 --- a/examples/o2obidi/ent/user_delete.go +++ b/examples/o2obidi/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2obidi/ent/predicate" - "github.com/facebook/ent/examples/o2obidi/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2obidi/ent/predicate" + "entgo.io/ent/examples/o2obidi/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/o2obidi/ent/user_query.go b/examples/o2obidi/ent/user_query.go index d43295421..2e309f5f4 100644 --- a/examples/o2obidi/ent/user_query.go +++ b/examples/o2obidi/ent/user_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2obidi/ent/predicate" - "github.com/facebook/ent/examples/o2obidi/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2obidi/ent/predicate" + "entgo.io/ent/examples/o2obidi/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/o2obidi/ent/user_update.go b/examples/o2obidi/ent/user_update.go index 02694f540..ae20326a1 100644 --- a/examples/o2obidi/ent/user_update.go +++ b/examples/o2obidi/ent/user_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2obidi/ent/predicate" - "github.com/facebook/ent/examples/o2obidi/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2obidi/ent/predicate" + "entgo.io/ent/examples/o2obidi/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/o2obidi/example_test.go b/examples/o2obidi/example_test.go index b01624c14..ef264d132 100644 --- a/examples/o2obidi/example_test.go +++ b/examples/o2obidi/example_test.go @@ -9,8 +9,8 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2obidi/ent" - "github.com/facebook/ent/examples/o2obidi/ent/user" + "entgo.io/ent/examples/o2obidi/ent" + "entgo.io/ent/examples/o2obidi/ent/user" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/o2orecur/ent/client.go b/examples/o2orecur/ent/client.go index 9b4611193..6d10285bd 100644 --- a/examples/o2orecur/ent/client.go +++ b/examples/o2orecur/ent/client.go @@ -11,13 +11,13 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2orecur/ent/migrate" + "entgo.io/ent/examples/o2orecur/ent/migrate" - "github.com/facebook/ent/examples/o2orecur/ent/node" + "entgo.io/ent/examples/o2orecur/ent/node" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/o2orecur/ent/config.go b/examples/o2orecur/ent/config.go index f3edcf5ff..b84dab905 100644 --- a/examples/o2orecur/ent/config.go +++ b/examples/o2orecur/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/o2orecur/ent/ent.go b/examples/o2orecur/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/o2orecur/ent/ent.go +++ b/examples/o2orecur/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/o2orecur/ent/enttest/enttest.go b/examples/o2orecur/ent/enttest/enttest.go index 22336d077..f88ea07ab 100644 --- a/examples/o2orecur/ent/enttest/enttest.go +++ b/examples/o2orecur/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/o2orecur/ent" + "entgo.io/ent/examples/o2orecur/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/o2orecur/ent/runtime" + _ "entgo.io/ent/examples/o2orecur/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/o2orecur/ent/generate.go b/examples/o2orecur/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/o2orecur/ent/generate.go +++ b/examples/o2orecur/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/o2orecur/ent/hook/hook.go b/examples/o2orecur/ent/hook/hook.go index 5869422ed..112b356ab 100644 --- a/examples/o2orecur/ent/hook/hook.go +++ b/examples/o2orecur/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/o2orecur/ent" + "entgo.io/ent/examples/o2orecur/ent" ) // The NodeFunc type is an adapter to allow the use of ordinary diff --git a/examples/o2orecur/ent/migrate/migrate.go b/examples/o2orecur/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/o2orecur/ent/migrate/migrate.go +++ b/examples/o2orecur/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/o2orecur/ent/migrate/schema.go b/examples/o2orecur/ent/migrate/schema.go index e9dc24bf4..6ef785f53 100644 --- a/examples/o2orecur/ent/migrate/schema.go +++ b/examples/o2orecur/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/o2orecur/ent/mutation.go b/examples/o2orecur/ent/mutation.go index 494575d8d..2e4716271 100644 --- a/examples/o2orecur/ent/mutation.go +++ b/examples/o2orecur/ent/mutation.go @@ -11,10 +11,10 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/o2orecur/ent/node" - "github.com/facebook/ent/examples/o2orecur/ent/predicate" + "entgo.io/ent/examples/o2orecur/ent/node" + "entgo.io/ent/examples/o2orecur/ent/predicate" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/o2orecur/ent/node.go b/examples/o2orecur/ent/node.go index 167b19c62..cbcdd1b51 100644 --- a/examples/o2orecur/ent/node.go +++ b/examples/o2orecur/ent/node.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/o2orecur/ent/node" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/o2orecur/ent/node" ) // Node is the model entity for the Node schema. diff --git a/examples/o2orecur/ent/node/where.go b/examples/o2orecur/ent/node/where.go index 30e970f89..e8ea4517a 100644 --- a/examples/o2orecur/ent/node/where.go +++ b/examples/o2orecur/ent/node/where.go @@ -7,9 +7,9 @@ package node import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2orecur/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2orecur/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/o2orecur/ent/node_create.go b/examples/o2orecur/ent/node_create.go index a314cca65..b99e8168e 100644 --- a/examples/o2orecur/ent/node_create.go +++ b/examples/o2orecur/ent/node_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2orecur/ent/node" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2orecur/ent/node" + "entgo.io/ent/schema/field" ) // NodeCreate is the builder for creating a Node entity. diff --git a/examples/o2orecur/ent/node_delete.go b/examples/o2orecur/ent/node_delete.go index bba1ce166..f43782cec 100644 --- a/examples/o2orecur/ent/node_delete.go +++ b/examples/o2orecur/ent/node_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2orecur/ent/node" - "github.com/facebook/ent/examples/o2orecur/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2orecur/ent/node" + "entgo.io/ent/examples/o2orecur/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeDelete is the builder for deleting a Node entity. diff --git a/examples/o2orecur/ent/node_query.go b/examples/o2orecur/ent/node_query.go index c5011a961..c359ce2e1 100644 --- a/examples/o2orecur/ent/node_query.go +++ b/examples/o2orecur/ent/node_query.go @@ -13,11 +13,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2orecur/ent/node" - "github.com/facebook/ent/examples/o2orecur/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2orecur/ent/node" + "entgo.io/ent/examples/o2orecur/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeQuery is the builder for querying Node entities. diff --git a/examples/o2orecur/ent/node_update.go b/examples/o2orecur/ent/node_update.go index cf5911e48..454462855 100644 --- a/examples/o2orecur/ent/node_update.go +++ b/examples/o2orecur/ent/node_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/o2orecur/ent/node" - "github.com/facebook/ent/examples/o2orecur/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/o2orecur/ent/node" + "entgo.io/ent/examples/o2orecur/ent/predicate" + "entgo.io/ent/schema/field" ) // NodeUpdate is the builder for updating Node entities. diff --git a/examples/o2orecur/ent/predicate/predicate.go b/examples/o2orecur/ent/predicate/predicate.go index 6ee494e88..00cdc2199 100644 --- a/examples/o2orecur/ent/predicate/predicate.go +++ b/examples/o2orecur/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Node is the predicate function for node builders. diff --git a/examples/o2orecur/ent/runtime/runtime.go b/examples/o2orecur/ent/runtime/runtime.go index d0f100d23..97efd2268 100644 --- a/examples/o2orecur/ent/runtime/runtime.go +++ b/examples/o2orecur/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/o2orecur/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/o2orecur/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/o2orecur/ent/schema/node.go b/examples/o2orecur/ent/schema/node.go index 4e310d99f..93a43dcac 100644 --- a/examples/o2orecur/ent/schema/node.go +++ b/examples/o2orecur/ent/schema/node.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Node holds the schema definition for the Node entity. diff --git a/examples/o2orecur/ent/tx.go b/examples/o2orecur/ent/tx.go index 825f1d6c2..cfec157c8 100644 --- a/examples/o2orecur/ent/tx.go +++ b/examples/o2orecur/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/o2orecur/example_test.go b/examples/o2orecur/example_test.go index c044e8cc9..2a469da05 100644 --- a/examples/o2orecur/example_test.go +++ b/examples/o2orecur/example_test.go @@ -9,8 +9,8 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/o2orecur/ent" - "github.com/facebook/ent/examples/o2orecur/ent/node" + "entgo.io/ent/examples/o2orecur/ent" + "entgo.io/ent/examples/o2orecur/ent/node" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/privacyadmin/ent/client.go b/examples/privacyadmin/ent/client.go index 5a929fc7b..1138c9309 100644 --- a/examples/privacyadmin/ent/client.go +++ b/examples/privacyadmin/ent/client.go @@ -11,12 +11,12 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/privacyadmin/ent/migrate" + "entgo.io/ent/examples/privacyadmin/ent/migrate" - "github.com/facebook/ent/examples/privacyadmin/ent/user" + "entgo.io/ent/examples/privacyadmin/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" ) // Client is the client that holds all ent builders. diff --git a/examples/privacyadmin/ent/config.go b/examples/privacyadmin/ent/config.go index 97712c973..461de3d8d 100644 --- a/examples/privacyadmin/ent/config.go +++ b/examples/privacyadmin/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/privacyadmin/ent/ent.go b/examples/privacyadmin/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/privacyadmin/ent/ent.go +++ b/examples/privacyadmin/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/privacyadmin/ent/enttest/enttest.go b/examples/privacyadmin/ent/enttest/enttest.go index a2fa06fa5..f814180a2 100644 --- a/examples/privacyadmin/ent/enttest/enttest.go +++ b/examples/privacyadmin/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/privacyadmin/ent" + "entgo.io/ent/examples/privacyadmin/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/privacyadmin/ent/runtime" + _ "entgo.io/ent/examples/privacyadmin/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/privacyadmin/ent/generate.go b/examples/privacyadmin/ent/generate.go index 8ce544e2c..2af1bc861 100644 --- a/examples/privacyadmin/ent/generate.go +++ b/examples/privacyadmin/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --feature schema/snapshot,privacy --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --feature schema/snapshot,privacy --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/privacyadmin/ent/hook/hook.go b/examples/privacyadmin/ent/hook/hook.go index fa57227d1..d477dfd4b 100644 --- a/examples/privacyadmin/ent/hook/hook.go +++ b/examples/privacyadmin/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/privacyadmin/ent" + "entgo.io/ent/examples/privacyadmin/ent" ) // The UserFunc type is an adapter to allow the use of ordinary diff --git a/examples/privacyadmin/ent/internal/schema.go b/examples/privacyadmin/ent/internal/schema.go index 1753a3bb4..c4a5f99fd 100644 --- a/examples/privacyadmin/ent/internal/schema.go +++ b/examples/privacyadmin/ent/internal/schema.go @@ -9,4 +9,4 @@ // Package internal holds a loadable version of the latest schema. package internal -const Schema = `{"Schema":"github.com/facebook/ent/examples/privacyadmin/ent/schema","Package":"github.com/facebook/ent/examples/privacyadmin/ent","Schemas":[{"name":"User","config":{"Table":""},"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":"Unknown","default_kind":24,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":false,"MixinIndex":0}]}],"Features":["schema/snapshot","privacy"]}` +const Schema = `{"Schema":"entgo.io/ent/examples/privacyadmin/ent/schema","Package":"entgo.io/ent/examples/privacyadmin/ent","Schemas":[{"name":"User","config":{"Table":""},"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":"Unknown","default_kind":24,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":false,"MixinIndex":0}]}],"Features":["schema/snapshot","privacy"]}` diff --git a/examples/privacyadmin/ent/migrate/migrate.go b/examples/privacyadmin/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/privacyadmin/ent/migrate/migrate.go +++ b/examples/privacyadmin/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/privacyadmin/ent/migrate/schema.go b/examples/privacyadmin/ent/migrate/schema.go index 5bdfe3464..1e77a29d4 100644 --- a/examples/privacyadmin/ent/migrate/schema.go +++ b/examples/privacyadmin/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/privacyadmin/ent/mutation.go b/examples/privacyadmin/ent/mutation.go index 28efa9f74..754322870 100644 --- a/examples/privacyadmin/ent/mutation.go +++ b/examples/privacyadmin/ent/mutation.go @@ -11,10 +11,10 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/privacyadmin/ent/predicate" - "github.com/facebook/ent/examples/privacyadmin/ent/user" + "entgo.io/ent/examples/privacyadmin/ent/predicate" + "entgo.io/ent/examples/privacyadmin/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/privacyadmin/ent/predicate/predicate.go b/examples/privacyadmin/ent/predicate/predicate.go index 5df743681..e8922f489 100644 --- a/examples/privacyadmin/ent/predicate/predicate.go +++ b/examples/privacyadmin/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // User is the predicate function for user builders. diff --git a/examples/privacyadmin/ent/privacy/privacy.go b/examples/privacyadmin/ent/privacy/privacy.go index 591c8a7ad..b523bb615 100644 --- a/examples/privacyadmin/ent/privacy/privacy.go +++ b/examples/privacyadmin/ent/privacy/privacy.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/privacyadmin/ent" + "entgo.io/ent/examples/privacyadmin/ent" - "github.com/facebook/ent/privacy" + "entgo.io/ent/privacy" ) var ( diff --git a/examples/privacyadmin/ent/runtime.go b/examples/privacyadmin/ent/runtime.go index 138bb180f..2ac24b237 100644 --- a/examples/privacyadmin/ent/runtime.go +++ b/examples/privacyadmin/ent/runtime.go @@ -6,4 +6,4 @@ package ent -// The schema-stitching logic is generated in github.com/facebook/ent/examples/privacyadmin/ent/runtime/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/privacyadmin/ent/runtime/runtime.go diff --git a/examples/privacyadmin/ent/runtime/runtime.go b/examples/privacyadmin/ent/runtime/runtime.go index dd91882a8..91a0e6d34 100644 --- a/examples/privacyadmin/ent/runtime/runtime.go +++ b/examples/privacyadmin/ent/runtime/runtime.go @@ -9,11 +9,11 @@ package runtime import ( "context" - "github.com/facebook/ent/examples/privacyadmin/ent/schema" - "github.com/facebook/ent/examples/privacyadmin/ent/user" + "entgo.io/ent/examples/privacyadmin/ent/schema" + "entgo.io/ent/examples/privacyadmin/ent/user" - "github.com/facebook/ent" - "github.com/facebook/ent/privacy" + "entgo.io/ent" + "entgo.io/ent/privacy" ) // The init function reads all schema descriptors with runtime code diff --git a/examples/privacyadmin/ent/schema/user.go b/examples/privacyadmin/ent/schema/user.go index c99b23754..05adc1700 100644 --- a/examples/privacyadmin/ent/schema/user.go +++ b/examples/privacyadmin/ent/schema/user.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/examples/privacyadmin/ent/privacy" - "github.com/facebook/ent/examples/privacyadmin/rule" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/examples/privacyadmin/ent/privacy" + "entgo.io/ent/examples/privacyadmin/rule" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/privacyadmin/ent/tx.go b/examples/privacyadmin/ent/tx.go index 1f608018b..f3aaeb4de 100644 --- a/examples/privacyadmin/ent/tx.go +++ b/examples/privacyadmin/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/privacyadmin/ent/user.go b/examples/privacyadmin/ent/user.go index 5e67c35ae..87f5a098f 100644 --- a/examples/privacyadmin/ent/user.go +++ b/examples/privacyadmin/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/privacyadmin/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/privacyadmin/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/privacyadmin/ent/user/user.go b/examples/privacyadmin/ent/user/user.go index d96cd464e..80fa753f7 100644 --- a/examples/privacyadmin/ent/user/user.go +++ b/examples/privacyadmin/ent/user/user.go @@ -7,7 +7,7 @@ package user import ( - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -42,7 +42,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/examples/privacyadmin/ent/runtime" +// import _ "entgo.io/ent/examples/privacyadmin/ent/runtime" // var ( Hooks [1]ent.Hook diff --git a/examples/privacyadmin/ent/user/where.go b/examples/privacyadmin/ent/user/where.go index 975a74eb6..bb9f9b4e6 100644 --- a/examples/privacyadmin/ent/user/where.go +++ b/examples/privacyadmin/ent/user/where.go @@ -7,8 +7,8 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/privacyadmin/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/privacyadmin/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/privacyadmin/ent/user_create.go b/examples/privacyadmin/ent/user_create.go index 21e062cd9..735be7457 100644 --- a/examples/privacyadmin/ent/user_create.go +++ b/examples/privacyadmin/ent/user_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacyadmin/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacyadmin/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/privacyadmin/ent/user_delete.go b/examples/privacyadmin/ent/user_delete.go index e3f8117d7..e3a3e0b2e 100644 --- a/examples/privacyadmin/ent/user_delete.go +++ b/examples/privacyadmin/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacyadmin/ent/predicate" - "github.com/facebook/ent/examples/privacyadmin/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacyadmin/ent/predicate" + "entgo.io/ent/examples/privacyadmin/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/privacyadmin/ent/user_query.go b/examples/privacyadmin/ent/user_query.go index 21eb38c66..d2c540860 100644 --- a/examples/privacyadmin/ent/user_query.go +++ b/examples/privacyadmin/ent/user_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacyadmin/ent/predicate" - "github.com/facebook/ent/examples/privacyadmin/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacyadmin/ent/predicate" + "entgo.io/ent/examples/privacyadmin/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/privacyadmin/ent/user_update.go b/examples/privacyadmin/ent/user_update.go index a800cdac5..1ac0c8061 100644 --- a/examples/privacyadmin/ent/user_update.go +++ b/examples/privacyadmin/ent/user_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacyadmin/ent/predicate" - "github.com/facebook/ent/examples/privacyadmin/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacyadmin/ent/predicate" + "entgo.io/ent/examples/privacyadmin/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/privacyadmin/example_test.go b/examples/privacyadmin/example_test.go index 75eb09dca..619d08e1a 100644 --- a/examples/privacyadmin/example_test.go +++ b/examples/privacyadmin/example_test.go @@ -10,11 +10,11 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/privacyadmin/viewer" + "entgo.io/ent/examples/privacyadmin/viewer" - "github.com/facebook/ent/examples/privacyadmin/ent" - "github.com/facebook/ent/examples/privacyadmin/ent/privacy" - _ "github.com/facebook/ent/examples/privacyadmin/ent/runtime" + "entgo.io/ent/examples/privacyadmin/ent" + "entgo.io/ent/examples/privacyadmin/ent/privacy" + _ "entgo.io/ent/examples/privacyadmin/ent/runtime" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/privacyadmin/rule/rule.go b/examples/privacyadmin/rule/rule.go index 09cca4c30..59e5ea1c1 100644 --- a/examples/privacyadmin/rule/rule.go +++ b/examples/privacyadmin/rule/rule.go @@ -7,8 +7,8 @@ package rule import ( "context" - "github.com/facebook/ent/examples/privacyadmin/ent/privacy" - "github.com/facebook/ent/examples/privacyadmin/viewer" + "entgo.io/ent/examples/privacyadmin/ent/privacy" + "entgo.io/ent/examples/privacyadmin/viewer" ) // DenyIfNoViewer is a rule that returns deny decision if the viewer is missing in the context. diff --git a/examples/privacytenant/ent/client.go b/examples/privacytenant/ent/client.go index 1a82804f1..b0d5268c0 100644 --- a/examples/privacytenant/ent/client.go +++ b/examples/privacytenant/ent/client.go @@ -11,15 +11,15 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/privacytenant/ent/migrate" + "entgo.io/ent/examples/privacytenant/ent/migrate" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/privacytenant/ent/config.go b/examples/privacytenant/ent/config.go index 480c4270d..b032d786d 100644 --- a/examples/privacytenant/ent/config.go +++ b/examples/privacytenant/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/privacytenant/ent/ent.go b/examples/privacytenant/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/privacytenant/ent/ent.go +++ b/examples/privacytenant/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/privacytenant/ent/entql.go b/examples/privacytenant/ent/entql.go index 94e04c891..2717defb8 100644 --- a/examples/privacytenant/ent/entql.go +++ b/examples/privacytenant/ent/entql.go @@ -7,15 +7,15 @@ package ent import ( - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/entql" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/entql" + "entgo.io/ent/schema/field" ) // schemaGraph holds a representation of ent/schema at runtime. diff --git a/examples/privacytenant/ent/enttest/enttest.go b/examples/privacytenant/ent/enttest/enttest.go index ffdcc5dd0..e4289ee2e 100644 --- a/examples/privacytenant/ent/enttest/enttest.go +++ b/examples/privacytenant/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/privacytenant/ent" + "entgo.io/ent/examples/privacytenant/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/privacytenant/ent/runtime" + _ "entgo.io/ent/examples/privacytenant/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/privacytenant/ent/generate.go b/examples/privacytenant/ent/generate.go index 6edfb9d86..1d5829df9 100644 --- a/examples/privacytenant/ent/generate.go +++ b/examples/privacytenant/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --feature privacy,entql,schema/snapshot --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --feature privacy,entql,schema/snapshot --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/privacytenant/ent/group.go b/examples/privacytenant/ent/group.go index 96ef7c22d..e45682d1c 100644 --- a/examples/privacytenant/ent/group.go +++ b/examples/privacytenant/ent/group.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/tenant" ) // Group is the model entity for the Group schema. diff --git a/examples/privacytenant/ent/group/group.go b/examples/privacytenant/ent/group/group.go index a1b55b983..c3a4e491f 100644 --- a/examples/privacytenant/ent/group/group.go +++ b/examples/privacytenant/ent/group/group.go @@ -7,7 +7,7 @@ package group import ( - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -75,7 +75,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/examples/privacytenant/ent/runtime" +// import _ "entgo.io/ent/examples/privacytenant/ent/runtime" // var ( Hooks [1]ent.Hook diff --git a/examples/privacytenant/ent/group/where.go b/examples/privacytenant/ent/group/where.go index 4ffaa3d97..96ad6a1e3 100644 --- a/examples/privacytenant/ent/group/where.go +++ b/examples/privacytenant/ent/group/where.go @@ -7,9 +7,9 @@ package group import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/privacytenant/ent/group_create.go b/examples/privacytenant/ent/group_create.go index 25d59aea2..5568c12be 100644 --- a/examples/privacytenant/ent/group_create.go +++ b/examples/privacytenant/ent/group_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/examples/privacytenant/ent/group_delete.go b/examples/privacytenant/ent/group_delete.go index 3f2e0fba0..dc1fe3139 100644 --- a/examples/privacytenant/ent/group_delete.go +++ b/examples/privacytenant/ent/group_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/examples/privacytenant/ent/group_query.go b/examples/privacytenant/ent/group_query.go index 4e84dba17..10f311d58 100644 --- a/examples/privacytenant/ent/group_query.go +++ b/examples/privacytenant/ent/group_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/examples/privacytenant/ent/group_update.go b/examples/privacytenant/ent/group_update.go index 220c36c85..60b566549 100644 --- a/examples/privacytenant/ent/group_update.go +++ b/examples/privacytenant/ent/group_update.go @@ -11,13 +11,13 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/examples/privacytenant/ent/hook/hook.go b/examples/privacytenant/ent/hook/hook.go index 37b4b69da..71257ff11 100644 --- a/examples/privacytenant/ent/hook/hook.go +++ b/examples/privacytenant/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/privacytenant/ent" + "entgo.io/ent/examples/privacytenant/ent" ) // The GroupFunc type is an adapter to allow the use of ordinary diff --git a/examples/privacytenant/ent/internal/schema.go b/examples/privacytenant/ent/internal/schema.go index 42d5e817c..d3431304c 100644 --- a/examples/privacytenant/ent/internal/schema.go +++ b/examples/privacytenant/ent/internal/schema.go @@ -9,4 +9,4 @@ // Package internal holds a loadable version of the latest schema. package internal -const Schema = `{"Schema":"github.com/facebook/ent/examples/privacytenant/ent/schema","Package":"github.com/facebook/ent/examples/privacytenant/ent","Schemas":[{"name":"Group","config":{"Table":""},"edges":[{"name":"tenant","type":"Tenant","unique":true,"required":true},{"name":"users","type":"User","ref_name":"groups","inverse":true}],"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":"Unknown","default_kind":24,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":true,"MixinIndex":1},{"Index":0,"MixedIn":false,"MixinIndex":0}]},{"name":"Tenant","config":{"Table":""},"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":false,"MixinIndex":0}]},{"name":"User","config":{"Table":""},"edges":[{"name":"tenant","type":"Tenant","unique":true,"required":true},{"name":"groups","type":"Group"}],"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":"Unknown","default_kind":24,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"foods","type":{"Type":3,"Ident":"[]string","PkgPath":"","Nillable":true,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":true,"MixinIndex":1}]}],"Features":["privacy","entql","schema/snapshot"]}` +const Schema = `{"Schema":"entgo.io/ent/examples/privacytenant/ent/schema","Package":"entgo.io/ent/examples/privacytenant/ent","Schemas":[{"name":"Group","config":{"Table":""},"edges":[{"name":"tenant","type":"Tenant","unique":true,"required":true},{"name":"users","type":"User","ref_name":"groups","inverse":true}],"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":"Unknown","default_kind":24,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":true,"MixinIndex":1},{"Index":0,"MixedIn":false,"MixinIndex":0}]},{"name":"Tenant","config":{"Table":""},"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"validators":1,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":false,"MixinIndex":0}]},{"name":"User","config":{"Table":""},"edges":[{"name":"tenant","type":"Tenant","unique":true,"required":true},{"name":"groups","type":"Group"}],"fields":[{"name":"name","type":{"Type":7,"Ident":"","PkgPath":"","Nillable":false,"RType":null},"default":true,"default_value":"Unknown","default_kind":24,"position":{"Index":0,"MixedIn":false,"MixinIndex":0}},{"name":"foods","type":{"Type":3,"Ident":"[]string","PkgPath":"","Nillable":true,"RType":null},"optional":true,"position":{"Index":1,"MixedIn":false,"MixinIndex":0}}],"policy":[{"Index":0,"MixedIn":true,"MixinIndex":0},{"Index":0,"MixedIn":true,"MixinIndex":1}]}],"Features":["privacy","entql","schema/snapshot"]}` diff --git a/examples/privacytenant/ent/migrate/migrate.go b/examples/privacytenant/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/privacytenant/ent/migrate/migrate.go +++ b/examples/privacytenant/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/privacytenant/ent/migrate/schema.go b/examples/privacytenant/ent/migrate/schema.go index 56b0b1e5a..205cf0b80 100644 --- a/examples/privacytenant/ent/migrate/schema.go +++ b/examples/privacytenant/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/privacytenant/ent/mutation.go b/examples/privacytenant/ent/mutation.go index 7cbf1abb0..73eba722f 100644 --- a/examples/privacytenant/ent/mutation.go +++ b/examples/privacytenant/ent/mutation.go @@ -11,12 +11,12 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/privacytenant/ent/predicate/predicate.go b/examples/privacytenant/ent/predicate/predicate.go index 32edf7cdc..0c4c256b3 100644 --- a/examples/privacytenant/ent/predicate/predicate.go +++ b/examples/privacytenant/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Group is the predicate function for group builders. diff --git a/examples/privacytenant/ent/privacy/privacy.go b/examples/privacytenant/ent/privacy/privacy.go index 4fd579ae7..90d12e16d 100644 --- a/examples/privacytenant/ent/privacy/privacy.go +++ b/examples/privacytenant/ent/privacy/privacy.go @@ -10,10 +10,10 @@ import ( "context" "fmt" - "github.com/facebook/ent/entql" - "github.com/facebook/ent/examples/privacytenant/ent" + "entgo.io/ent/entql" + "entgo.io/ent/examples/privacytenant/ent" - "github.com/facebook/ent/privacy" + "entgo.io/ent/privacy" ) var ( diff --git a/examples/privacytenant/ent/runtime.go b/examples/privacytenant/ent/runtime.go index 0e0f42e37..1970d710f 100644 --- a/examples/privacytenant/ent/runtime.go +++ b/examples/privacytenant/ent/runtime.go @@ -6,4 +6,4 @@ package ent -// The schema-stitching logic is generated in github.com/facebook/ent/examples/privacytenant/ent/runtime/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/privacytenant/ent/runtime/runtime.go diff --git a/examples/privacytenant/ent/runtime/runtime.go b/examples/privacytenant/ent/runtime/runtime.go index 17e19510c..7f834fb6e 100644 --- a/examples/privacytenant/ent/runtime/runtime.go +++ b/examples/privacytenant/ent/runtime/runtime.go @@ -9,13 +9,13 @@ package runtime import ( "context" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/schema" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/schema" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent" - "github.com/facebook/ent/privacy" + "entgo.io/ent" + "entgo.io/ent/privacy" ) // The init function reads all schema descriptors with runtime code diff --git a/examples/privacytenant/ent/schema/group.go b/examples/privacytenant/ent/schema/group.go index 25cabd0b6..f6a965fad 100644 --- a/examples/privacytenant/ent/schema/group.go +++ b/examples/privacytenant/ent/schema/group.go @@ -5,11 +5,11 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/examples/privacytenant/ent/privacy" - "github.com/facebook/ent/examples/privacytenant/rule" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/examples/privacytenant/ent/privacy" + "entgo.io/ent/examples/privacytenant/rule" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the Group entity. diff --git a/examples/privacytenant/ent/schema/mixin.go b/examples/privacytenant/ent/schema/mixin.go index dc2b76589..287e25c08 100644 --- a/examples/privacytenant/ent/schema/mixin.go +++ b/examples/privacytenant/ent/schema/mixin.go @@ -5,11 +5,11 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/examples/privacytenant/ent/privacy" - "github.com/facebook/ent/examples/privacytenant/rule" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/examples/privacytenant/ent/privacy" + "entgo.io/ent/examples/privacytenant/rule" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/mixin" ) // BaseMixin for all schemas in the graph. diff --git a/examples/privacytenant/ent/schema/tenant.go b/examples/privacytenant/ent/schema/tenant.go index 1e999b362..21f2863b1 100644 --- a/examples/privacytenant/ent/schema/tenant.go +++ b/examples/privacytenant/ent/schema/tenant.go @@ -5,10 +5,10 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/examples/privacytenant/ent/privacy" - "github.com/facebook/ent/examples/privacytenant/rule" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/examples/privacytenant/ent/privacy" + "entgo.io/ent/examples/privacytenant/rule" + "entgo.io/ent/schema/field" ) // Tenant holds the schema definition for the Tenant entity. diff --git a/examples/privacytenant/ent/schema/user.go b/examples/privacytenant/ent/schema/user.go index 154c7c824..0a187d145 100644 --- a/examples/privacytenant/ent/schema/user.go +++ b/examples/privacytenant/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/privacytenant/ent/tenant.go b/examples/privacytenant/ent/tenant.go index 5f66e3505..c696491f8 100644 --- a/examples/privacytenant/ent/tenant.go +++ b/examples/privacytenant/ent/tenant.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/privacytenant/ent/tenant" ) // Tenant is the model entity for the Tenant schema. diff --git a/examples/privacytenant/ent/tenant/tenant.go b/examples/privacytenant/ent/tenant/tenant.go index deac63189..b77b50fd1 100644 --- a/examples/privacytenant/ent/tenant/tenant.go +++ b/examples/privacytenant/ent/tenant/tenant.go @@ -7,7 +7,7 @@ package tenant import ( - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -42,7 +42,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/examples/privacytenant/ent/runtime" +// import _ "entgo.io/ent/examples/privacytenant/ent/runtime" // var ( Hooks [1]ent.Hook diff --git a/examples/privacytenant/ent/tenant/where.go b/examples/privacytenant/ent/tenant/where.go index f7d83d441..30b6a511b 100644 --- a/examples/privacytenant/ent/tenant/where.go +++ b/examples/privacytenant/ent/tenant/where.go @@ -7,8 +7,8 @@ package tenant import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/privacytenant/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/privacytenant/ent/tenant_create.go b/examples/privacytenant/ent/tenant_create.go index a29636a29..ead19e5ef 100644 --- a/examples/privacytenant/ent/tenant_create.go +++ b/examples/privacytenant/ent/tenant_create.go @@ -11,9 +11,9 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/schema/field" ) // TenantCreate is the builder for creating a Tenant entity. diff --git a/examples/privacytenant/ent/tenant_delete.go b/examples/privacytenant/ent/tenant_delete.go index d3153ce8f..9469cda6f 100644 --- a/examples/privacytenant/ent/tenant_delete.go +++ b/examples/privacytenant/ent/tenant_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/schema/field" ) // TenantDelete is the builder for deleting a Tenant entity. diff --git a/examples/privacytenant/ent/tenant_query.go b/examples/privacytenant/ent/tenant_query.go index 7e0e00bc7..25d732aa1 100644 --- a/examples/privacytenant/ent/tenant_query.go +++ b/examples/privacytenant/ent/tenant_query.go @@ -12,11 +12,11 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/schema/field" ) // TenantQuery is the builder for querying Tenant entities. diff --git a/examples/privacytenant/ent/tenant_update.go b/examples/privacytenant/ent/tenant_update.go index 40b3e0960..5fa3c02f2 100644 --- a/examples/privacytenant/ent/tenant_update.go +++ b/examples/privacytenant/ent/tenant_update.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/schema/field" ) // TenantUpdate is the builder for updating Tenant entities. diff --git a/examples/privacytenant/ent/tx.go b/examples/privacytenant/ent/tx.go index c7785fc16..a3bc562dc 100644 --- a/examples/privacytenant/ent/tx.go +++ b/examples/privacytenant/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/privacytenant/ent/user.go b/examples/privacytenant/ent/user.go index 46d946016..789b67b02 100644 --- a/examples/privacytenant/ent/user.go +++ b/examples/privacytenant/ent/user.go @@ -11,9 +11,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/privacytenant/ent/user/user.go b/examples/privacytenant/ent/user/user.go index f3b6c37df..7f03af55c 100644 --- a/examples/privacytenant/ent/user/user.go +++ b/examples/privacytenant/ent/user/user.go @@ -7,7 +7,7 @@ package user import ( - "github.com/facebook/ent" + "entgo.io/ent" ) const ( @@ -78,7 +78,7 @@ func ValidColumn(column string) bool { // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // -// import _ "github.com/facebook/ent/examples/privacytenant/ent/runtime" +// import _ "entgo.io/ent/examples/privacytenant/ent/runtime" // var ( Hooks [1]ent.Hook diff --git a/examples/privacytenant/ent/user/where.go b/examples/privacytenant/ent/user/where.go index 8e5f208ca..1a2922224 100644 --- a/examples/privacytenant/ent/user/where.go +++ b/examples/privacytenant/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/privacytenant/ent/user_create.go b/examples/privacytenant/ent/user_create.go index a9bb097e8..590e287a2 100644 --- a/examples/privacytenant/ent/user_create.go +++ b/examples/privacytenant/ent/user_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/privacytenant/ent/user_delete.go b/examples/privacytenant/ent/user_delete.go index d274de742..cf0b7c8c8 100644 --- a/examples/privacytenant/ent/user_delete.go +++ b/examples/privacytenant/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/privacytenant/ent/user_query.go b/examples/privacytenant/ent/user_query.go index 197cc0c53..36ead31ca 100644 --- a/examples/privacytenant/ent/user_query.go +++ b/examples/privacytenant/ent/user_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/privacytenant/ent/user_update.go b/examples/privacytenant/ent/user_update.go index 95546bd98..1f530965b 100644 --- a/examples/privacytenant/ent/user_update.go +++ b/examples/privacytenant/ent/user_update.go @@ -11,13 +11,13 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/privacytenant/ent/group" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/privacytenant/ent/group" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/privacytenant/example_test.go b/examples/privacytenant/example_test.go index c3fce2cd7..81e9df71e 100644 --- a/examples/privacytenant/example_test.go +++ b/examples/privacytenant/example_test.go @@ -10,10 +10,10 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/privacytenant/ent" - "github.com/facebook/ent/examples/privacytenant/ent/privacy" - _ "github.com/facebook/ent/examples/privacytenant/ent/runtime" - "github.com/facebook/ent/examples/privacytenant/viewer" + "entgo.io/ent/examples/privacytenant/ent" + "entgo.io/ent/examples/privacytenant/ent/privacy" + _ "entgo.io/ent/examples/privacytenant/ent/runtime" + "entgo.io/ent/examples/privacytenant/viewer" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/privacytenant/rule/rule.go b/examples/privacytenant/rule/rule.go index 2daa956dc..64c3d1a1d 100644 --- a/examples/privacytenant/rule/rule.go +++ b/examples/privacytenant/rule/rule.go @@ -7,12 +7,12 @@ package rule import ( "context" - "github.com/facebook/ent/examples/privacytenant/ent" - "github.com/facebook/ent/examples/privacytenant/ent/predicate" - "github.com/facebook/ent/examples/privacytenant/ent/privacy" - "github.com/facebook/ent/examples/privacytenant/ent/tenant" - "github.com/facebook/ent/examples/privacytenant/ent/user" - "github.com/facebook/ent/examples/privacytenant/viewer" + "entgo.io/ent/examples/privacytenant/ent" + "entgo.io/ent/examples/privacytenant/ent/predicate" + "entgo.io/ent/examples/privacytenant/ent/privacy" + "entgo.io/ent/examples/privacytenant/ent/tenant" + "entgo.io/ent/examples/privacytenant/ent/user" + "entgo.io/ent/examples/privacytenant/viewer" ) // DenyIfNoViewer is a rule that returns deny decision if the viewer is missing in the context. diff --git a/examples/privacytenant/viewer/viewer.go b/examples/privacytenant/viewer/viewer.go index 77064cf5f..36137783e 100644 --- a/examples/privacytenant/viewer/viewer.go +++ b/examples/privacytenant/viewer/viewer.go @@ -7,7 +7,7 @@ package viewer import ( "context" - "github.com/facebook/ent/examples/privacytenant/ent" + "entgo.io/ent/examples/privacytenant/ent" ) // Role for viewer actions. diff --git a/examples/start/ent/car.go b/examples/start/ent/car.go index f4c1217da..84f51e47f 100644 --- a/examples/start/ent/car.go +++ b/examples/start/ent/car.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/user" ) // Car is the model entity for the Car schema. diff --git a/examples/start/ent/car/where.go b/examples/start/ent/car/where.go index 471b8b925..c342ea2f3 100644 --- a/examples/start/ent/car/where.go +++ b/examples/start/ent/car/where.go @@ -9,9 +9,9 @@ package car import ( "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/start/ent/car_create.go b/examples/start/ent/car_create.go index 91a3443d5..78784b6ab 100644 --- a/examples/start/ent/car_create.go +++ b/examples/start/ent/car_create.go @@ -12,10 +12,10 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // CarCreate is the builder for creating a Car entity. diff --git a/examples/start/ent/car_delete.go b/examples/start/ent/car_delete.go index c2ce5d5e9..1ce9764c5 100644 --- a/examples/start/ent/car_delete.go +++ b/examples/start/ent/car_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/schema/field" ) // CarDelete is the builder for deleting a Car entity. diff --git a/examples/start/ent/car_query.go b/examples/start/ent/car_query.go index 566c66657..e137b7925 100644 --- a/examples/start/ent/car_query.go +++ b/examples/start/ent/car_query.go @@ -12,12 +12,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // CarQuery is the builder for querying Car entities. diff --git a/examples/start/ent/car_update.go b/examples/start/ent/car_update.go index 1625e4dd8..9684d6d12 100644 --- a/examples/start/ent/car_update.go +++ b/examples/start/ent/car_update.go @@ -11,12 +11,12 @@ import ( "fmt" "time" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // CarUpdate is the builder for updating Car entities. diff --git a/examples/start/ent/client.go b/examples/start/ent/client.go index 138847ffa..424080802 100644 --- a/examples/start/ent/client.go +++ b/examples/start/ent/client.go @@ -11,15 +11,15 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/start/ent/migrate" + "entgo.io/ent/examples/start/ent/migrate" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/user" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/start/ent/config.go b/examples/start/ent/config.go index 7044fde27..e339a526d 100644 --- a/examples/start/ent/config.go +++ b/examples/start/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/start/ent/ent.go b/examples/start/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/start/ent/ent.go +++ b/examples/start/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/start/ent/enttest/enttest.go b/examples/start/ent/enttest/enttest.go index 0accd9db3..29e679dfa 100644 --- a/examples/start/ent/enttest/enttest.go +++ b/examples/start/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/start/ent" + "entgo.io/ent/examples/start/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/start/ent/runtime" + _ "entgo.io/ent/examples/start/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/start/ent/generate.go b/examples/start/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/start/ent/generate.go +++ b/examples/start/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/start/ent/group.go b/examples/start/ent/group.go index bb44f65df..dc86f02d1 100644 --- a/examples/start/ent/group.go +++ b/examples/start/ent/group.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/start/ent/group" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/start/ent/group" ) // Group is the model entity for the Group schema. diff --git a/examples/start/ent/group/where.go b/examples/start/ent/group/where.go index 914e1c1a8..12c2af088 100644 --- a/examples/start/ent/group/where.go +++ b/examples/start/ent/group/where.go @@ -7,9 +7,9 @@ package group import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/start/ent/group_create.go b/examples/start/ent/group_create.go index 085425248..da9f657ce 100644 --- a/examples/start/ent/group_create.go +++ b/examples/start/ent/group_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/examples/start/ent/group_delete.go b/examples/start/ent/group_delete.go index 4d45b76f1..12f65a6a0 100644 --- a/examples/start/ent/group_delete.go +++ b/examples/start/ent/group_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/examples/start/ent/group_query.go b/examples/start/ent/group_query.go index 8d37cbb3e..d4a57e00a 100644 --- a/examples/start/ent/group_query.go +++ b/examples/start/ent/group_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/examples/start/ent/group_update.go b/examples/start/ent/group_update.go index 3613a0603..d3beaa817 100644 --- a/examples/start/ent/group_update.go +++ b/examples/start/ent/group_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/examples/start/ent/hook/hook.go b/examples/start/ent/hook/hook.go index 969ed54f1..701bf6c8e 100644 --- a/examples/start/ent/hook/hook.go +++ b/examples/start/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/start/ent" + "entgo.io/ent/examples/start/ent" ) // The CarFunc type is an adapter to allow the use of ordinary diff --git a/examples/start/ent/migrate/migrate.go b/examples/start/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/start/ent/migrate/migrate.go +++ b/examples/start/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/start/ent/migrate/schema.go b/examples/start/ent/migrate/schema.go index 46f01d022..44d7c3f4d 100644 --- a/examples/start/ent/migrate/schema.go +++ b/examples/start/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/start/ent/mutation.go b/examples/start/ent/mutation.go index 7ed2b23f5..a4ce81f1f 100644 --- a/examples/start/ent/mutation.go +++ b/examples/start/ent/mutation.go @@ -12,12 +12,12 @@ import ( "sync" "time" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/examples/start/ent/user" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/examples/start/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/start/ent/predicate/predicate.go b/examples/start/ent/predicate/predicate.go index 3c9a3f6bf..4e60e8bb9 100644 --- a/examples/start/ent/predicate/predicate.go +++ b/examples/start/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Car is the predicate function for car builders. diff --git a/examples/start/ent/runtime.go b/examples/start/ent/runtime.go index e3806fda5..2b015d5b5 100644 --- a/examples/start/ent/runtime.go +++ b/examples/start/ent/runtime.go @@ -7,9 +7,9 @@ package ent import ( - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/schema" - "github.com/facebook/ent/examples/start/ent/user" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/schema" + "entgo.io/ent/examples/start/ent/user" ) // The init function reads all schema descriptors with runtime code diff --git a/examples/start/ent/runtime/runtime.go b/examples/start/ent/runtime/runtime.go index 4f41fbd99..b443b32dc 100644 --- a/examples/start/ent/runtime/runtime.go +++ b/examples/start/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/start/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/start/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/start/ent/schema/car.go b/examples/start/ent/schema/car.go index 576c763d4..543cca3ce 100644 --- a/examples/start/ent/schema/car.go +++ b/examples/start/ent/schema/car.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Car holds the schema definition for the Car entity. diff --git a/examples/start/ent/schema/group.go b/examples/start/ent/schema/group.go index 59f1d563a..c050dc884 100644 --- a/examples/start/ent/schema/group.go +++ b/examples/start/ent/schema/group.go @@ -7,9 +7,9 @@ package schema import ( "regexp" - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Group holds the schema definition for the Group entity. diff --git a/examples/start/ent/schema/user.go b/examples/start/ent/schema/user.go index 0c37f3358..e22665072 100644 --- a/examples/start/ent/schema/user.go +++ b/examples/start/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/start/ent/tx.go b/examples/start/ent/tx.go index 9d2994591..2f354b60a 100644 --- a/examples/start/ent/tx.go +++ b/examples/start/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/start/ent/user.go b/examples/start/ent/user.go index 73d82ae65..d0f1e90a0 100644 --- a/examples/start/ent/user.go +++ b/examples/start/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/start/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/start/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/start/ent/user/where.go b/examples/start/ent/user/where.go index 943f13c42..60f68d193 100644 --- a/examples/start/ent/user/where.go +++ b/examples/start/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/start/ent/user_create.go b/examples/start/ent/user_create.go index f5aabf015..b6fe56388 100644 --- a/examples/start/ent/user_create.go +++ b/examples/start/ent/user_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/start/ent/user_delete.go b/examples/start/ent/user_delete.go index 6f75a7acd..ead22a670 100644 --- a/examples/start/ent/user_delete.go +++ b/examples/start/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/start/ent/user_query.go b/examples/start/ent/user_query.go index c11d995bc..e0f5fb6d4 100644 --- a/examples/start/ent/user_query.go +++ b/examples/start/ent/user_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/start/ent/user_update.go b/examples/start/ent/user_update.go index b35f05636..12647edaa 100644 --- a/examples/start/ent/user_update.go +++ b/examples/start/ent/user_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/predicate" - "github.com/facebook/ent/examples/start/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/predicate" + "entgo.io/ent/examples/start/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/start/start.go b/examples/start/start.go index 9539ea9d9..62810c95b 100644 --- a/examples/start/start.go +++ b/examples/start/start.go @@ -10,10 +10,10 @@ import ( "log" "time" - "github.com/facebook/ent/examples/start/ent" - "github.com/facebook/ent/examples/start/ent/car" - "github.com/facebook/ent/examples/start/ent/group" - "github.com/facebook/ent/examples/start/ent/user" + "entgo.io/ent/examples/start/ent" + "entgo.io/ent/examples/start/ent/car" + "entgo.io/ent/examples/start/ent/group" + "entgo.io/ent/examples/start/ent/user" _ "github.com/mattn/go-sqlite3" ) diff --git a/examples/traversal/ent/client.go b/examples/traversal/ent/client.go index b1776100a..3ef6f2013 100644 --- a/examples/traversal/ent/client.go +++ b/examples/traversal/ent/client.go @@ -11,15 +11,15 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/traversal/ent/migrate" + "entgo.io/ent/examples/traversal/ent/migrate" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/user" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/user" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // Client is the client that holds all ent builders. diff --git a/examples/traversal/ent/config.go b/examples/traversal/ent/config.go index 9629ecf14..3c07958b5 100644 --- a/examples/traversal/ent/config.go +++ b/examples/traversal/ent/config.go @@ -7,8 +7,8 @@ package ent import ( - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" + "entgo.io/ent" + "entgo.io/ent/dialect" ) // Option function to configure the client. diff --git a/examples/traversal/ent/ent.go b/examples/traversal/ent/ent.go index 5d690ca46..ca75cd9a4 100644 --- a/examples/traversal/ent/ent.go +++ b/examples/traversal/ent/ent.go @@ -11,10 +11,10 @@ import ( "fmt" "strings" - "github.com/facebook/ent" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" + "entgo.io/ent" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" ) // ent aliases to avoid import conflicts in user's code. diff --git a/examples/traversal/ent/enttest/enttest.go b/examples/traversal/ent/enttest/enttest.go index 1a9dbafb7..1d0803846 100644 --- a/examples/traversal/ent/enttest/enttest.go +++ b/examples/traversal/ent/enttest/enttest.go @@ -9,11 +9,11 @@ package enttest import ( "context" - "github.com/facebook/ent/examples/traversal/ent" + "entgo.io/ent/examples/traversal/ent" // required by schema hooks. - _ "github.com/facebook/ent/examples/traversal/ent/runtime" + _ "entgo.io/ent/examples/traversal/ent/runtime" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect/sql/schema" ) type ( diff --git a/examples/traversal/ent/generate.go b/examples/traversal/ent/generate.go index 505aca0a3..8f9bac811 100644 --- a/examples/traversal/ent/generate.go +++ b/examples/traversal/ent/generate.go @@ -4,4 +4,4 @@ package ent -//go:generate go run github.com/facebook/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema +//go:generate go run entgo.io/ent/cmd/ent generate --header "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\n// Code generated by entc, DO NOT EDIT." ./schema diff --git a/examples/traversal/ent/group.go b/examples/traversal/ent/group.go index 33a7ebbf8..9e7247e55 100644 --- a/examples/traversal/ent/group.go +++ b/examples/traversal/ent/group.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/user" ) // Group is the model entity for the Group schema. diff --git a/examples/traversal/ent/group/where.go b/examples/traversal/ent/group/where.go index f1cad633d..bcc3d7bf3 100644 --- a/examples/traversal/ent/group/where.go +++ b/examples/traversal/ent/group/where.go @@ -7,9 +7,9 @@ package group import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/traversal/ent/group_create.go b/examples/traversal/ent/group_create.go index e6eb558a9..953a724b2 100644 --- a/examples/traversal/ent/group_create.go +++ b/examples/traversal/ent/group_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // GroupCreate is the builder for creating a Group entity. diff --git a/examples/traversal/ent/group_delete.go b/examples/traversal/ent/group_delete.go index 236d39c58..471bb78d0 100644 --- a/examples/traversal/ent/group_delete.go +++ b/examples/traversal/ent/group_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/schema/field" ) // GroupDelete is the builder for deleting a Group entity. diff --git a/examples/traversal/ent/group_query.go b/examples/traversal/ent/group_query.go index 5df184be6..1a58eff34 100644 --- a/examples/traversal/ent/group_query.go +++ b/examples/traversal/ent/group_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // GroupQuery is the builder for querying Group entities. diff --git a/examples/traversal/ent/group_update.go b/examples/traversal/ent/group_update.go index 76deace19..86736d73c 100644 --- a/examples/traversal/ent/group_update.go +++ b/examples/traversal/ent/group_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // GroupUpdate is the builder for updating Group entities. diff --git a/examples/traversal/ent/hook/hook.go b/examples/traversal/ent/hook/hook.go index d92bce85f..8919dfd8b 100644 --- a/examples/traversal/ent/hook/hook.go +++ b/examples/traversal/ent/hook/hook.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/facebook/ent/examples/traversal/ent" + "entgo.io/ent/examples/traversal/ent" ) // The GroupFunc type is an adapter to allow the use of ordinary diff --git a/examples/traversal/ent/migrate/migrate.go b/examples/traversal/ent/migrate/migrate.go index 59182d480..1a087c0da 100644 --- a/examples/traversal/ent/migrate/migrate.go +++ b/examples/traversal/ent/migrate/migrate.go @@ -11,8 +11,8 @@ import ( "fmt" "io" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/dialect/sql/schema" + "entgo.io/ent/dialect" + "entgo.io/ent/dialect/sql/schema" ) var ( diff --git a/examples/traversal/ent/migrate/schema.go b/examples/traversal/ent/migrate/schema.go index df67225f7..3e4009c51 100644 --- a/examples/traversal/ent/migrate/schema.go +++ b/examples/traversal/ent/migrate/schema.go @@ -7,8 +7,8 @@ package migrate import ( - "github.com/facebook/ent/dialect/sql/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/schema" + "entgo.io/ent/schema/field" ) var ( diff --git a/examples/traversal/ent/mutation.go b/examples/traversal/ent/mutation.go index f58005573..41672ef3a 100644 --- a/examples/traversal/ent/mutation.go +++ b/examples/traversal/ent/mutation.go @@ -11,12 +11,12 @@ import ( "fmt" "sync" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/examples/traversal/ent/user" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/examples/traversal/ent/user" - "github.com/facebook/ent" + "entgo.io/ent" ) const ( diff --git a/examples/traversal/ent/pet.go b/examples/traversal/ent/pet.go index 2e80461b2..a6823ccdf 100644 --- a/examples/traversal/ent/pet.go +++ b/examples/traversal/ent/pet.go @@ -10,9 +10,9 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/user" ) // Pet is the model entity for the Pet schema. diff --git a/examples/traversal/ent/pet/where.go b/examples/traversal/ent/pet/where.go index c29965012..4bc38a298 100644 --- a/examples/traversal/ent/pet/where.go +++ b/examples/traversal/ent/pet/where.go @@ -7,9 +7,9 @@ package pet import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/traversal/ent/pet_create.go b/examples/traversal/ent/pet_create.go index b94dab300..6d27b6199 100644 --- a/examples/traversal/ent/pet_create.go +++ b/examples/traversal/ent/pet_create.go @@ -11,10 +11,10 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // PetCreate is the builder for creating a Pet entity. diff --git a/examples/traversal/ent/pet_delete.go b/examples/traversal/ent/pet_delete.go index ec3185892..67a0c1365 100644 --- a/examples/traversal/ent/pet_delete.go +++ b/examples/traversal/ent/pet_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/schema/field" ) // PetDelete is the builder for deleting a Pet entity. diff --git a/examples/traversal/ent/pet_query.go b/examples/traversal/ent/pet_query.go index 891a554bf..4a77e6adf 100644 --- a/examples/traversal/ent/pet_query.go +++ b/examples/traversal/ent/pet_query.go @@ -13,12 +13,12 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // PetQuery is the builder for querying Pet entities. diff --git a/examples/traversal/ent/pet_update.go b/examples/traversal/ent/pet_update.go index 120389bed..1f21f8344 100644 --- a/examples/traversal/ent/pet_update.go +++ b/examples/traversal/ent/pet_update.go @@ -10,12 +10,12 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // PetUpdate is the builder for updating Pet entities. diff --git a/examples/traversal/ent/predicate/predicate.go b/examples/traversal/ent/predicate/predicate.go index e4dcce964..f7df68c4a 100644 --- a/examples/traversal/ent/predicate/predicate.go +++ b/examples/traversal/ent/predicate/predicate.go @@ -7,7 +7,7 @@ package predicate import ( - "github.com/facebook/ent/dialect/sql" + "entgo.io/ent/dialect/sql" ) // Group is the predicate function for group builders. diff --git a/examples/traversal/ent/runtime/runtime.go b/examples/traversal/ent/runtime/runtime.go index e3959d9b6..076a8eb85 100644 --- a/examples/traversal/ent/runtime/runtime.go +++ b/examples/traversal/ent/runtime/runtime.go @@ -6,7 +6,7 @@ package runtime -// The schema-stitching logic is generated in github.com/facebook/ent/examples/traversal/ent/runtime.go +// The schema-stitching logic is generated in entgo.io/ent/examples/traversal/ent/runtime.go const ( Version = "(devel)" // Version of ent codegen. diff --git a/examples/traversal/ent/schema/group.go b/examples/traversal/ent/schema/group.go index a639916ce..23909677f 100644 --- a/examples/traversal/ent/schema/group.go +++ b/examples/traversal/ent/schema/group.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Group holds the schema definition for the Group entity. diff --git a/examples/traversal/ent/schema/pet.go b/examples/traversal/ent/schema/pet.go index 71f642787..2de376ac3 100644 --- a/examples/traversal/ent/schema/pet.go +++ b/examples/traversal/ent/schema/pet.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // Pet holds the schema definition for the Pet entity. diff --git a/examples/traversal/ent/schema/user.go b/examples/traversal/ent/schema/user.go index ce0f9fc40..95f018284 100644 --- a/examples/traversal/ent/schema/user.go +++ b/examples/traversal/ent/schema/user.go @@ -5,9 +5,9 @@ package schema import ( - "github.com/facebook/ent" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/field" ) // User holds the schema definition for the User entity. diff --git a/examples/traversal/ent/tx.go b/examples/traversal/ent/tx.go index 4eea1ea1c..1615407d3 100644 --- a/examples/traversal/ent/tx.go +++ b/examples/traversal/ent/tx.go @@ -10,7 +10,7 @@ import ( "context" "sync" - "github.com/facebook/ent/dialect" + "entgo.io/ent/dialect" ) // Tx is a transactional client that is created by calling Client.Tx(). diff --git a/examples/traversal/ent/user.go b/examples/traversal/ent/user.go index 53aef633e..7c0f176e6 100644 --- a/examples/traversal/ent/user.go +++ b/examples/traversal/ent/user.go @@ -10,8 +10,8 @@ import ( "fmt" "strings" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/examples/traversal/ent/user" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/examples/traversal/ent/user" ) // User is the model entity for the User schema. diff --git a/examples/traversal/ent/user/where.go b/examples/traversal/ent/user/where.go index a8a1c36c5..e0362642b 100644 --- a/examples/traversal/ent/user/where.go +++ b/examples/traversal/ent/user/where.go @@ -7,9 +7,9 @@ package user import ( - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/predicate" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/predicate" ) // ID filters vertices based on their ID field. diff --git a/examples/traversal/ent/user_create.go b/examples/traversal/ent/user_create.go index 6491ba39b..d05adc0df 100644 --- a/examples/traversal/ent/user_create.go +++ b/examples/traversal/ent/user_create.go @@ -11,11 +11,11 @@ import ( "errors" "fmt" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // UserCreate is the builder for creating a User entity. diff --git a/examples/traversal/ent/user_delete.go b/examples/traversal/ent/user_delete.go index ac5c27683..28b1d60ce 100644 --- a/examples/traversal/ent/user_delete.go +++ b/examples/traversal/ent/user_delete.go @@ -10,11 +10,11 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // UserDelete is the builder for deleting a User entity. diff --git a/examples/traversal/ent/user_query.go b/examples/traversal/ent/user_query.go index d6553c512..9b7094963 100644 --- a/examples/traversal/ent/user_query.go +++ b/examples/traversal/ent/user_query.go @@ -13,13 +13,13 @@ import ( "fmt" "math" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // UserQuery is the builder for querying User entities. diff --git a/examples/traversal/ent/user_update.go b/examples/traversal/ent/user_update.go index bbd5f66cd..a6fba1bbc 100644 --- a/examples/traversal/ent/user_update.go +++ b/examples/traversal/ent/user_update.go @@ -10,13 +10,13 @@ import ( "context" "fmt" - "github.com/facebook/ent/dialect/sql" - "github.com/facebook/ent/dialect/sql/sqlgraph" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/predicate" - "github.com/facebook/ent/examples/traversal/ent/user" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect/sql" + "entgo.io/ent/dialect/sql/sqlgraph" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/predicate" + "entgo.io/ent/examples/traversal/ent/user" + "entgo.io/ent/schema/field" ) // UserUpdate is the builder for updating User entities. diff --git a/examples/traversal/example_test.go b/examples/traversal/example_test.go index 75965d5ea..749931d24 100644 --- a/examples/traversal/example_test.go +++ b/examples/traversal/example_test.go @@ -9,10 +9,10 @@ import ( "fmt" "log" - "github.com/facebook/ent/examples/traversal/ent" - "github.com/facebook/ent/examples/traversal/ent/group" - "github.com/facebook/ent/examples/traversal/ent/pet" - "github.com/facebook/ent/examples/traversal/ent/user" + "entgo.io/ent/examples/traversal/ent" + "entgo.io/ent/examples/traversal/ent/group" + "entgo.io/ent/examples/traversal/ent/pet" + "entgo.io/ent/examples/traversal/ent/user" _ "github.com/mattn/go-sqlite3" "github.com/pkg/errors" diff --git a/go.mod b/go.mod index 310300915..11846e643 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/facebook/ent +module entgo.io/ent go 1.15 diff --git a/privacy/privacy.go b/privacy/privacy.go index 6319f46b3..87ac98b6d 100644 --- a/privacy/privacy.go +++ b/privacy/privacy.go @@ -10,7 +10,7 @@ import ( "context" "errors" - "github.com/facebook/ent" + "entgo.io/ent" ) // List of policy decisions. diff --git a/privacy/privacy_test.go b/privacy/privacy_test.go index 11c950308..a159d13ba 100644 --- a/privacy/privacy_test.go +++ b/privacy/privacy_test.go @@ -9,8 +9,8 @@ import ( "errors" "testing" - "github.com/facebook/ent" - "github.com/facebook/ent/privacy" + "entgo.io/ent" + "entgo.io/ent/privacy" "github.com/stretchr/testify/assert" ) diff --git a/schema/edge/annotation.go b/schema/edge/annotation.go index fc3030fd3..75daf9cb2 100644 --- a/schema/edge/annotation.go +++ b/schema/edge/annotation.go @@ -4,7 +4,7 @@ package edge -import "github.com/facebook/ent/schema" +import "entgo.io/ent/schema" // Annotation is a builtin schema annotation for // configuring the edges behavior in codegen. diff --git a/schema/edge/edge.go b/schema/edge/edge.go index c7bef1924..69895104a 100644 --- a/schema/edge/edge.go +++ b/schema/edge/edge.go @@ -7,7 +7,7 @@ package edge import ( "reflect" - "github.com/facebook/ent/schema" + "entgo.io/ent/schema" ) // A Descriptor for edge configuration. diff --git a/schema/edge/edge_test.go b/schema/edge/edge_test.go index 2b31bc188..7cac9a4bb 100644 --- a/schema/edge/edge_test.go +++ b/schema/edge/edge_test.go @@ -7,9 +7,9 @@ package edge_test import ( "testing" - "github.com/facebook/ent" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/edge" + "entgo.io/ent" + "entgo.io/ent/schema" + "entgo.io/ent/schema/edge" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/schema/field/annotation.go b/schema/field/annotation.go index 4a5c86590..ad6d4612d 100644 --- a/schema/field/annotation.go +++ b/schema/field/annotation.go @@ -4,7 +4,7 @@ package field -import "github.com/facebook/ent/schema" +import "entgo.io/ent/schema" // Annotation is a builtin schema annotation for // configuring the schema fields in codegen. diff --git a/schema/field/annotation_test.go b/schema/field/annotation_test.go index eea9206de..8f0722138 100644 --- a/schema/field/annotation_test.go +++ b/schema/field/annotation_test.go @@ -7,7 +7,7 @@ package field_test import ( "testing" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/schema/field" "github.com/stretchr/testify/assert" ) diff --git a/schema/field/field.go b/schema/field/field.go index 5a69c5cc7..878268a77 100644 --- a/schema/field/field.go +++ b/schema/field/field.go @@ -14,7 +14,7 @@ import ( "regexp" "time" - "github.com/facebook/ent/schema" + "entgo.io/ent/schema" ) // String returns a new Field with type string. diff --git a/schema/field/field_test.go b/schema/field/field_test.go index 9fe51cb69..eeff982c1 100644 --- a/schema/field/field_test.go +++ b/schema/field/field_test.go @@ -15,8 +15,8 @@ import ( "testing" "time" - "github.com/facebook/ent/dialect" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/dialect" + "entgo.io/ent/schema/field" "github.com/google/uuid" "github.com/stretchr/testify/assert" @@ -70,7 +70,7 @@ func TestInt(t *testing.T) { fd = field.Int("active").GoType(Count(0)).Descriptor() assert.NoError(t, fd.Err) assert.Equal(t, "field_test.Count", fd.Info.Ident) - assert.Equal(t, "github.com/facebook/ent/schema/field_test", fd.Info.PkgPath) + assert.Equal(t, "entgo.io/ent/schema/field_test", fd.Info.PkgPath) assert.Equal(t, "field_test.Count", fd.Info.String()) assert.False(t, fd.Info.Nillable) assert.False(t, fd.Info.ValueScanner()) @@ -125,7 +125,7 @@ func TestFloat(t *testing.T) { fd = field.Float("active").GoType(Count(0)).Descriptor() assert.NoError(t, fd.Err) assert.Equal(t, "field_test.Count", fd.Info.Ident) - assert.Equal(t, "github.com/facebook/ent/schema/field_test", fd.Info.PkgPath) + assert.Equal(t, "entgo.io/ent/schema/field_test", fd.Info.PkgPath) assert.Equal(t, "field_test.Count", fd.Info.String()) assert.False(t, fd.Info.Nillable) assert.False(t, fd.Info.ValueScanner()) @@ -159,7 +159,7 @@ func TestBool(t *testing.T) { fd = field.Bool("active").GoType(Status(false)).Descriptor() assert.NoError(t, fd.Err) assert.Equal(t, "field_test.Status", fd.Info.Ident) - assert.Equal(t, "github.com/facebook/ent/schema/field_test", fd.Info.PkgPath) + assert.Equal(t, "entgo.io/ent/schema/field_test", fd.Info.PkgPath) assert.Equal(t, "field_test.Status", fd.Info.String()) assert.False(t, fd.Info.Nillable) assert.False(t, fd.Info.ValueScanner()) @@ -326,7 +326,7 @@ func TestString(t *testing.T) { } fd = field.String("nullable_url").GoType(&tURL{}).Descriptor() assert.Equal(t, "field_test.tURL", fd.Info.Ident) - assert.Equal(t, "github.com/facebook/ent/schema/field_test", fd.Info.PkgPath) + assert.Equal(t, "entgo.io/ent/schema/field_test", fd.Info.PkgPath) assert.Equal(t, "field_test.tURL", fd.Info.String()) assert.True(t, fd.Info.ValueScanner()) assert.True(t, fd.Info.Stringer()) @@ -366,7 +366,7 @@ func TestTime(t *testing.T) { fd = field.Time("deleted_at").GoType(Time{}).Descriptor() assert.NoError(t, fd.Err) assert.Equal(t, "field_test.Time", fd.Info.Ident) - assert.Equal(t, "github.com/facebook/ent/schema/field_test", fd.Info.PkgPath) + assert.Equal(t, "entgo.io/ent/schema/field_test", fd.Info.PkgPath) assert.Equal(t, "field_test.Time", fd.Info.String()) assert.False(t, fd.Info.Nillable) assert.False(t, fd.Info.ValueScanner()) @@ -471,7 +471,7 @@ func TestField_Enums(t *testing.T) { fd = field.Enum("role").GoType(Role("")).Descriptor() assert.NoError(t, fd.Err) assert.Equal(t, "field_test.Role", fd.Info.Ident) - assert.Equal(t, "github.com/facebook/ent/schema/field_test", fd.Info.PkgPath) + assert.Equal(t, "entgo.io/ent/schema/field_test", fd.Info.PkgPath) assert.Equal(t, "field_test.Role", fd.Info.String()) assert.False(t, fd.Info.Nillable) assert.False(t, fd.Info.ValueScanner()) @@ -520,7 +520,7 @@ func TestField_Other(t *testing.T) { assert.Equal(t, "other", fd.Name) assert.True(t, fd.Unique) assert.Equal(t, "field_test.custom", fd.Info.String()) - assert.Equal(t, "github.com/facebook/ent/schema/field_test", fd.Info.PkgPath) + assert.Equal(t, "entgo.io/ent/schema/field_test", fd.Info.PkgPath) assert.NotNil(t, fd.Default) fd = field.Other("other", &custom{}). diff --git a/schema/field/internal/gen.go b/schema/field/internal/gen.go index db7bcd1ae..097b8e54a 100644 --- a/schema/field/internal/gen.go +++ b/schema/field/internal/gen.go @@ -13,7 +13,7 @@ import ( "strings" "text/template" - "github.com/facebook/ent/schema/field" + "entgo.io/ent/schema/field" ) func main() { diff --git a/schema/field/internal/numeric.tmpl b/schema/field/internal/numeric.tmpl index 39399c9d4..68c5aeaf5 100644 --- a/schema/field/internal/numeric.tmpl +++ b/schema/field/internal/numeric.tmpl @@ -9,7 +9,7 @@ import ( "errors" "reflect" - "github.com/facebook/ent/schema" + "entgo.io/ent/schema" ) //go:generate go run internal/gen.go diff --git a/schema/field/numeric.go b/schema/field/numeric.go index f5e7a58cb..849ae641d 100644 --- a/schema/field/numeric.go +++ b/schema/field/numeric.go @@ -8,7 +8,7 @@ import ( "errors" "reflect" - "github.com/facebook/ent/schema" + "entgo.io/ent/schema" ) //go:generate go run internal/gen.go diff --git a/schema/index/index_test.go b/schema/index/index_test.go index 06716237b..1b5374b97 100644 --- a/schema/index/index_test.go +++ b/schema/index/index_test.go @@ -7,7 +7,7 @@ package index_test import ( "testing" - "github.com/facebook/ent/schema/index" + "entgo.io/ent/schema/index" "github.com/stretchr/testify/require" ) diff --git a/schema/mixin/mixin.go b/schema/mixin/mixin.go index 2e8d892d2..42535f58e 100644 --- a/schema/mixin/mixin.go +++ b/schema/mixin/mixin.go @@ -7,9 +7,9 @@ package mixin import ( "time" - "github.com/facebook/ent" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/field" + "entgo.io/ent" + "entgo.io/ent/schema" + "entgo.io/ent/schema/field" ) // Schema is the default implementation for the ent.Mixin interface. diff --git a/schema/mixin/mixin_test.go b/schema/mixin/mixin_test.go index 02ab4077e..5b1722afb 100644 --- a/schema/mixin/mixin_test.go +++ b/schema/mixin/mixin_test.go @@ -7,10 +7,10 @@ package mixin_test import ( "testing" - "github.com/facebook/ent" - "github.com/facebook/ent/schema" - "github.com/facebook/ent/schema/edge" - "github.com/facebook/ent/schema/mixin" + "entgo.io/ent" + "entgo.io/ent/schema" + "entgo.io/ent/schema/edge" + "entgo.io/ent/schema/mixin" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require"