From 7d213824cf65efd4de3d7b7d403dc9b5138bd7cf Mon Sep 17 00:00:00 2001 From: Achim Rohn Date: Sat, 15 Nov 2025 11:57:09 +0100 Subject: [PATCH] Revert "Rename module to git.gorlug.de/code/golang/ersteller-lib" This reverts commit 3acac94217e42442a0f845e5ed6c60ff8d1b5343. --- README.md | 3 --- authentication/auth.go | 2 +- authentication/google/auth.go | 4 ++-- authentication/google/google_auth_repository.go | 2 +- authentication/google/googleauth-repository_gen.go | 2 +- authentication/google/http/google_auth.go | 4 ++-- authentication/keycloak.go | 2 +- authentication/login_page.go | 2 +- cli/create_audit_log.go | 2 +- go.mod | 2 +- htmx/htmx.go | 2 +- llm/mistral.go | 2 +- schema/ent/example/ent/client.go | 8 ++++---- schema/ent/example/ent/ent.go | 6 +++--- schema/ent/example/ent/enttest/enttest.go | 6 +++--- schema/ent/example/ent/group.go | 2 +- schema/ent/example/ent/group/where.go | 2 +- schema/ent/example/ent/group_create.go | 6 +++--- schema/ent/example/ent/group_delete.go | 4 ++-- schema/ent/example/ent/group_query.go | 8 ++++---- schema/ent/example/ent/group_update.go | 8 ++++---- schema/ent/example/ent/hook/hook.go | 2 +- schema/ent/example/ent/mutation.go | 8 ++++---- schema/ent/example/ent/runtime.go | 8 ++++---- schema/ent/example/ent/schema/group.go | 2 +- schema/ent/example/ent/schema/todo.go | 2 +- schema/ent/example/ent/schema/user.go | 2 +- schema/ent/example/ent/todo.go | 4 ++-- schema/ent/example/ent/todo/where.go | 2 +- schema/ent/example/ent/todo_create.go | 4 ++-- schema/ent/example/ent/todo_delete.go | 4 ++-- schema/ent/example/ent/todo_query.go | 6 +++--- schema/ent/example/ent/todo_update.go | 6 +++--- schema/ent/example/ent/user.go | 2 +- schema/ent/example/ent/user/where.go | 2 +- schema/ent/example/ent/user_create.go | 4 ++-- schema/ent/example/ent/user_delete.go | 4 ++-- schema/ent/example/ent/user_query.go | 6 +++--- schema/ent/example/ent/user_update.go | 6 +++--- schema/ent/example/start.go | 8 ++++---- user/user_repository.go | 2 +- 41 files changed, 80 insertions(+), 83 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 796741d..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Private gitlab repo hosting - -`git config --global url."git@gitlab.com:".insteadOf "https://gitlab.com/"` diff --git a/authentication/auth.go b/authentication/auth.go index d3edae5..8fb75b0 100644 --- a/authentication/auth.go +++ b/authentication/auth.go @@ -1,7 +1,7 @@ package authentication import ( - . "git.gorlug.de/code/golang/ersteller-lib" + . "ersteller-lib" "net/http" "strings" diff --git a/authentication/google/auth.go b/authentication/google/auth.go index 928e0c4..5d4c83d 100644 --- a/authentication/google/auth.go +++ b/authentication/google/auth.go @@ -6,8 +6,8 @@ import ( "encoding/base64" "encoding/json" "errors" - "git.gorlug.de/code/golang/ersteller-lib" - "git.gorlug.de/code/golang/ersteller-lib/authentication" + "ersteller-lib" + "ersteller-lib/authentication" "github.com/gorilla/sessions" "github.com/labstack/echo/v4" "golang.org/x/oauth2" diff --git a/authentication/google/google_auth_repository.go b/authentication/google/google_auth_repository.go index c455ec0..b3b44fa 100644 --- a/authentication/google/google_auth_repository.go +++ b/authentication/google/google_auth_repository.go @@ -3,7 +3,7 @@ package google import ( "context" "errors" - "git.gorlug.de/code/golang/ersteller-lib" + "ersteller-lib" "github.com/doug-martin/goqu/v9" ) diff --git a/authentication/google/googleauth-repository_gen.go b/authentication/google/googleauth-repository_gen.go index 2ee6819..90db51a 100644 --- a/authentication/google/googleauth-repository_gen.go +++ b/authentication/google/googleauth-repository_gen.go @@ -7,8 +7,8 @@ import ( "context" "encoding/json" "errors" + "ersteller-lib" "fmt" - "git.gorlug.de/code/golang/ersteller-lib" "github.com/doug-martin/goqu/v9" _ "github.com/doug-martin/goqu/v9/dialect/postgres" "github.com/doug-martin/goqu/v9/exp" diff --git a/authentication/google/http/google_auth.go b/authentication/google/http/google_auth.go index b998a46..e7d7545 100644 --- a/authentication/google/http/google_auth.go +++ b/authentication/google/http/google_auth.go @@ -5,8 +5,8 @@ import ( "crypto/rand" "encoding/base64" "encoding/json" - . "git.gorlug.de/code/golang/ersteller-lib" - "git.gorlug.de/code/golang/ersteller-lib/authentication" + . "ersteller-lib" + "ersteller-lib/authentication" "io/ioutil" "net/http" "time" diff --git a/authentication/keycloak.go b/authentication/keycloak.go index 341cd8e..f1e144d 100644 --- a/authentication/keycloak.go +++ b/authentication/keycloak.go @@ -2,7 +2,7 @@ package authentication import ( "context" - "git.gorlug.de/code/golang/ersteller-lib" + "ersteller-lib" "github.com/gorilla/sessions" "github.com/labstack/echo/v4" "github.com/markbates/goth" diff --git a/authentication/login_page.go b/authentication/login_page.go index e1d9dbc..90b96e3 100644 --- a/authentication/login_page.go +++ b/authentication/login_page.go @@ -1,7 +1,7 @@ package authentication import ( - "git.gorlug.de/code/golang/ersteller-lib" + "ersteller-lib" "github.com/labstack/echo/v4" "maragu.dev/gomponents" . "maragu.dev/gomponents/html" diff --git a/cli/create_audit_log.go b/cli/create_audit_log.go index 38f42fa..c7e9197 100644 --- a/cli/create_audit_log.go +++ b/cli/create_audit_log.go @@ -2,7 +2,7 @@ package main import ( "context" - "git.gorlug.de/code/golang/ersteller-lib" + "ersteller-lib" "github.com/joho/godotenv" "os" ) diff --git a/go.mod b/go.mod index b5ca57d..2ae45f9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.gorlug.de/code/golang/ersteller-lib +module ersteller-lib go 1.25.0 diff --git a/htmx/htmx.go b/htmx/htmx.go index 9abc509..d96fb5e 100644 --- a/htmx/htmx.go +++ b/htmx/htmx.go @@ -2,7 +2,7 @@ package htmx import ( "encoding/json" - "git.gorlug.de/code/golang/ersteller-lib" + "ersteller-lib" "github.com/labstack/echo/v4" ) diff --git a/llm/mistral.go b/llm/mistral.go index 4d85a11..77c91a6 100644 --- a/llm/mistral.go +++ b/llm/mistral.go @@ -3,8 +3,8 @@ package llm import ( "bytes" "encoding/json" + "ersteller-lib" "fmt" - "git.gorlug.de/code/golang/ersteller-lib" "io" "net/http" ) diff --git a/schema/ent/example/ent/client.go b/schema/ent/example/ent/client.go index 3a1ad1c..22b5706 100644 --- a/schema/ent/example/ent/client.go +++ b/schema/ent/example/ent/client.go @@ -9,11 +9,11 @@ import ( "log" "reflect" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/migrate" + "ersteller-lib/schema/ent/example/ent/migrate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/user" "entgo.io/ent" "entgo.io/ent/dialect" diff --git a/schema/ent/example/ent/ent.go b/schema/ent/example/ent/ent.go index 03385c2..0057ea9 100644 --- a/schema/ent/example/ent/ent.go +++ b/schema/ent/example/ent/ent.go @@ -5,10 +5,10 @@ package ent import ( "context" "errors" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "reflect" "sync" diff --git a/schema/ent/example/ent/enttest/enttest.go b/schema/ent/example/ent/enttest/enttest.go index b410d2d..e7b9d03 100644 --- a/schema/ent/example/ent/enttest/enttest.go +++ b/schema/ent/example/ent/enttest/enttest.go @@ -5,11 +5,11 @@ package enttest import ( "context" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent" + "ersteller-lib/schema/ent/example/ent" // required by schema hooks. - _ "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/runtime" + _ "ersteller-lib/schema/ent/example/ent/runtime" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/migrate" + "ersteller-lib/schema/ent/example/ent/migrate" "entgo.io/ent/dialect/sql/schema" ) diff --git a/schema/ent/example/ent/group.go b/schema/ent/example/ent/group.go index bec2dc5..a66d729 100644 --- a/schema/ent/example/ent/group.go +++ b/schema/ent/example/ent/group.go @@ -3,8 +3,8 @@ package ent import ( + "ersteller-lib/schema/ent/example/ent/group" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" "strings" "time" diff --git a/schema/ent/example/ent/group/where.go b/schema/ent/example/ent/group/where.go index d1f8e73..091d52f 100644 --- a/schema/ent/example/ent/group/where.go +++ b/schema/ent/example/ent/group/where.go @@ -3,7 +3,7 @@ package group import ( - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/predicate" "time" "entgo.io/ent/dialect/sql" diff --git a/schema/ent/example/ent/group_create.go b/schema/ent/example/ent/group_create.go index 7b69e61..1d14d41 100644 --- a/schema/ent/example/ent/group_create.go +++ b/schema/ent/example/ent/group_create.go @@ -5,10 +5,10 @@ package ent import ( "context" "errors" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "time" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/schema/ent/example/ent/group_delete.go b/schema/ent/example/ent/group_delete.go index ac42270..006f5d6 100644 --- a/schema/ent/example/ent/group_delete.go +++ b/schema/ent/example/ent/group_delete.go @@ -4,8 +4,8 @@ package ent import ( "context" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/predicate" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/schema/ent/example/ent/group_query.go b/schema/ent/example/ent/group_query.go index 6409ed1..64c24e7 100644 --- a/schema/ent/example/ent/group_query.go +++ b/schema/ent/example/ent/group_query.go @@ -5,11 +5,11 @@ package ent import ( "context" "database/sql/driver" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "math" "entgo.io/ent" diff --git a/schema/ent/example/ent/group_update.go b/schema/ent/example/ent/group_update.go index 079e26f..f4dc2dd 100644 --- a/schema/ent/example/ent/group_update.go +++ b/schema/ent/example/ent/group_update.go @@ -5,11 +5,11 @@ package ent import ( "context" "errors" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "time" "entgo.io/ent/dialect/sql" diff --git a/schema/ent/example/ent/hook/hook.go b/schema/ent/example/ent/hook/hook.go index c859df2..f4cc368 100644 --- a/schema/ent/example/ent/hook/hook.go +++ b/schema/ent/example/ent/hook/hook.go @@ -4,8 +4,8 @@ package hook import ( "context" + "ersteller-lib/schema/ent/example/ent" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent" ) // The GroupFunc type is an adapter to allow the use of ordinary diff --git a/schema/ent/example/ent/mutation.go b/schema/ent/example/ent/mutation.go index 7eb8bfa..0fd62bc 100644 --- a/schema/ent/example/ent/mutation.go +++ b/schema/ent/example/ent/mutation.go @@ -5,11 +5,11 @@ package ent import ( "context" "errors" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "sync" "time" diff --git a/schema/ent/example/ent/runtime.go b/schema/ent/example/ent/runtime.go index fcc1387..33fd177 100644 --- a/schema/ent/example/ent/runtime.go +++ b/schema/ent/example/ent/runtime.go @@ -3,10 +3,10 @@ package ent import ( - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/schema" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/schema" + "ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/user" "time" ) diff --git a/schema/ent/example/ent/schema/group.go b/schema/ent/example/ent/schema/group.go index 49c2033..5e7e19f 100644 --- a/schema/ent/example/ent/schema/group.go +++ b/schema/ent/example/ent/schema/group.go @@ -1,7 +1,7 @@ package schema import ( - "git.gorlug.de/code/golang/ersteller-lib/schema/ent" + "ersteller-lib/schema/ent" "entgo.io/ent" "entgo.io/ent/schema/edge" diff --git a/schema/ent/example/ent/schema/todo.go b/schema/ent/example/ent/schema/todo.go index df8b120..5051e5f 100644 --- a/schema/ent/example/ent/schema/todo.go +++ b/schema/ent/example/ent/schema/todo.go @@ -1,7 +1,7 @@ package schema import ( - "git.gorlug.de/code/golang/ersteller-lib/schema/ent" + "ersteller-lib/schema/ent" "entgo.io/ent" "entgo.io/ent/schema/edge" diff --git a/schema/ent/example/ent/schema/user.go b/schema/ent/example/ent/schema/user.go index ee600b3..2f3774f 100644 --- a/schema/ent/example/ent/schema/user.go +++ b/schema/ent/example/ent/schema/user.go @@ -1,7 +1,7 @@ package schema import ( - "git.gorlug.de/code/golang/ersteller-lib/schema/ent" + "ersteller-lib/schema/ent" "entgo.io/ent" "entgo.io/ent/schema/edge" diff --git a/schema/ent/example/ent/todo.go b/schema/ent/example/ent/todo.go index 31664c8..144f47d 100644 --- a/schema/ent/example/ent/todo.go +++ b/schema/ent/example/ent/todo.go @@ -3,9 +3,9 @@ package ent import ( + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/todo" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" "strings" "time" diff --git a/schema/ent/example/ent/todo/where.go b/schema/ent/example/ent/todo/where.go index 449dfb2..f9b6002 100644 --- a/schema/ent/example/ent/todo/where.go +++ b/schema/ent/example/ent/todo/where.go @@ -3,7 +3,7 @@ package todo import ( - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/predicate" "time" "entgo.io/ent/dialect/sql" diff --git a/schema/ent/example/ent/todo_create.go b/schema/ent/example/ent/todo_create.go index 9f4ba90..0dc2520 100644 --- a/schema/ent/example/ent/todo_create.go +++ b/schema/ent/example/ent/todo_create.go @@ -5,9 +5,9 @@ package ent import ( "context" "errors" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/todo" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" "time" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/schema/ent/example/ent/todo_delete.go b/schema/ent/example/ent/todo_delete.go index 785500c..39136e7 100644 --- a/schema/ent/example/ent/todo_delete.go +++ b/schema/ent/example/ent/todo_delete.go @@ -4,8 +4,8 @@ package ent import ( "context" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/todo" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/schema/ent/example/ent/todo_query.go b/schema/ent/example/ent/todo_query.go index bca656a..edfe87a 100644 --- a/schema/ent/example/ent/todo_query.go +++ b/schema/ent/example/ent/todo_query.go @@ -4,10 +4,10 @@ package ent import ( "context" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/todo" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" "math" "entgo.io/ent" diff --git a/schema/ent/example/ent/todo_update.go b/schema/ent/example/ent/todo_update.go index e37a381..9c516b2 100644 --- a/schema/ent/example/ent/todo_update.go +++ b/schema/ent/example/ent/todo_update.go @@ -5,10 +5,10 @@ package ent import ( "context" "errors" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/todo" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" "time" "entgo.io/ent/dialect/sql" diff --git a/schema/ent/example/ent/user.go b/schema/ent/example/ent/user.go index 0b5afd8..a08d68d 100644 --- a/schema/ent/example/ent/user.go +++ b/schema/ent/example/ent/user.go @@ -3,8 +3,8 @@ package ent import ( + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "strings" "time" diff --git a/schema/ent/example/ent/user/where.go b/schema/ent/example/ent/user/where.go index 48967d1..cd80c1e 100644 --- a/schema/ent/example/ent/user/where.go +++ b/schema/ent/example/ent/user/where.go @@ -3,7 +3,7 @@ package user import ( - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/predicate" "time" "entgo.io/ent/dialect/sql" diff --git a/schema/ent/example/ent/user_create.go b/schema/ent/example/ent/user_create.go index 68903d7..3c58c9d 100644 --- a/schema/ent/example/ent/user_create.go +++ b/schema/ent/example/ent/user_create.go @@ -5,9 +5,9 @@ package ent import ( "context" "errors" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "time" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/schema/ent/example/ent/user_delete.go b/schema/ent/example/ent/user_delete.go index 56b5cff..9c2c9db 100644 --- a/schema/ent/example/ent/user_delete.go +++ b/schema/ent/example/ent/user_delete.go @@ -4,8 +4,8 @@ package ent import ( "context" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/user" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/schema/ent/example/ent/user_query.go b/schema/ent/example/ent/user_query.go index 6c8670e..d5068f7 100644 --- a/schema/ent/example/ent/user_query.go +++ b/schema/ent/example/ent/user_query.go @@ -5,10 +5,10 @@ package ent import ( "context" "database/sql/driver" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "math" "entgo.io/ent" diff --git a/schema/ent/example/ent/user_update.go b/schema/ent/example/ent/user_update.go index 1baca78..8e1123d 100644 --- a/schema/ent/example/ent/user_update.go +++ b/schema/ent/example/ent/user_update.go @@ -5,10 +5,10 @@ package ent import ( "context" "errors" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/predicate" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "time" "entgo.io/ent/dialect/sql" diff --git a/schema/ent/example/start.go b/schema/ent/example/start.go index 65f3201..265d46d 100644 --- a/schema/ent/example/start.go +++ b/schema/ent/example/start.go @@ -2,11 +2,11 @@ package main import ( "context" + "ersteller-lib/schema/ent/example/ent" + "ersteller-lib/schema/ent/example/ent/group" + "ersteller-lib/schema/ent/example/ent/todo" + "ersteller-lib/schema/ent/example/ent/user" "fmt" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/todo" - "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/user" "log" "time" diff --git a/user/user_repository.go b/user/user_repository.go index 460dfe6..97e4aee 100644 --- a/user/user_repository.go +++ b/user/user_repository.go @@ -4,8 +4,8 @@ import ( "context" "encoding/json" "errors" + "ersteller-lib" "fmt" - "git.gorlug.de/code/golang/ersteller-lib" "github.com/doug-martin/goqu/v9" _ "github.com/doug-martin/goqu/v9/dialect/postgres" "github.com/doug-martin/goqu/v9/exp"