diff --git a/README.md b/README.md new file mode 100644 index 0000000..796741d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# 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 8fb75b0..d3edae5 100644 --- a/authentication/auth.go +++ b/authentication/auth.go @@ -1,7 +1,7 @@ package authentication import ( - . "ersteller-lib" + . "git.gorlug.de/code/golang/ersteller-lib" "net/http" "strings" diff --git a/authentication/google/auth.go b/authentication/google/auth.go index 5d4c83d..928e0c4 100644 --- a/authentication/google/auth.go +++ b/authentication/google/auth.go @@ -6,8 +6,8 @@ import ( "encoding/base64" "encoding/json" "errors" - "ersteller-lib" - "ersteller-lib/authentication" + "git.gorlug.de/code/golang/ersteller-lib" + "git.gorlug.de/code/golang/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 b3b44fa..c455ec0 100644 --- a/authentication/google/google_auth_repository.go +++ b/authentication/google/google_auth_repository.go @@ -3,7 +3,7 @@ package google import ( "context" "errors" - "ersteller-lib" + "git.gorlug.de/code/golang/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 90db51a..2ee6819 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 e7d7545..b998a46 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" - . "ersteller-lib" - "ersteller-lib/authentication" + . "git.gorlug.de/code/golang/ersteller-lib" + "git.gorlug.de/code/golang/ersteller-lib/authentication" "io/ioutil" "net/http" "time" diff --git a/authentication/keycloak.go b/authentication/keycloak.go index f1e144d..341cd8e 100644 --- a/authentication/keycloak.go +++ b/authentication/keycloak.go @@ -2,7 +2,7 @@ package authentication import ( "context" - "ersteller-lib" + "git.gorlug.de/code/golang/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 90b96e3..e1d9dbc 100644 --- a/authentication/login_page.go +++ b/authentication/login_page.go @@ -1,7 +1,7 @@ package authentication import ( - "ersteller-lib" + "git.gorlug.de/code/golang/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 c7e9197..38f42fa 100644 --- a/cli/create_audit_log.go +++ b/cli/create_audit_log.go @@ -2,7 +2,7 @@ package main import ( "context" - "ersteller-lib" + "git.gorlug.de/code/golang/ersteller-lib" "github.com/joho/godotenv" "os" ) diff --git a/go.mod b/go.mod index 2ae45f9..b5ca57d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module ersteller-lib +module git.gorlug.de/code/golang/ersteller-lib go 1.25.0 diff --git a/htmx/htmx.go b/htmx/htmx.go index d96fb5e..9abc509 100644 --- a/htmx/htmx.go +++ b/htmx/htmx.go @@ -2,7 +2,7 @@ package htmx import ( "encoding/json" - "ersteller-lib" + "git.gorlug.de/code/golang/ersteller-lib" "github.com/labstack/echo/v4" ) diff --git a/llm/mistral.go b/llm/mistral.go index 77c91a6..4d85a11 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 22b5706..3a1ad1c 100644 --- a/schema/ent/example/ent/client.go +++ b/schema/ent/example/ent/client.go @@ -9,11 +9,11 @@ import ( "log" "reflect" - "ersteller-lib/schema/ent/example/ent/migrate" + "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/migrate" - "ersteller-lib/schema/ent/example/ent/group" - "ersteller-lib/schema/ent/example/ent/todo" - "ersteller-lib/schema/ent/example/ent/user" + "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" "entgo.io/ent" "entgo.io/ent/dialect" diff --git a/schema/ent/example/ent/ent.go b/schema/ent/example/ent/ent.go index 0057ea9..03385c2 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 e7b9d03..b410d2d 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" - "ersteller-lib/schema/ent/example/ent" + "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent" // required by schema hooks. - _ "ersteller-lib/schema/ent/example/ent/runtime" + _ "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/runtime" - "ersteller-lib/schema/ent/example/ent/migrate" + "git.gorlug.de/code/golang/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 a66d729..bec2dc5 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 091d52f..d1f8e73 100644 --- a/schema/ent/example/ent/group/where.go +++ b/schema/ent/example/ent/group/where.go @@ -3,7 +3,7 @@ package group import ( - "ersteller-lib/schema/ent/example/ent/predicate" + "git.gorlug.de/code/golang/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 1d14d41..7b69e61 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 006f5d6..ac42270 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" - "ersteller-lib/schema/ent/example/ent/group" - "ersteller-lib/schema/ent/example/ent/predicate" + "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/group" + "git.gorlug.de/code/golang/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 64c24e7..6409ed1 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 f4dc2dd..079e26f 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 f4cc368..c859df2 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 0fd62bc..7eb8bfa 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 33fd177..fcc1387 100644 --- a/schema/ent/example/ent/runtime.go +++ b/schema/ent/example/ent/runtime.go @@ -3,10 +3,10 @@ package ent import ( - "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" + "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" "time" ) diff --git a/schema/ent/example/ent/schema/group.go b/schema/ent/example/ent/schema/group.go index 5e7e19f..49c2033 100644 --- a/schema/ent/example/ent/schema/group.go +++ b/schema/ent/example/ent/schema/group.go @@ -1,7 +1,7 @@ package schema import ( - "ersteller-lib/schema/ent" + "git.gorlug.de/code/golang/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 5051e5f..df8b120 100644 --- a/schema/ent/example/ent/schema/todo.go +++ b/schema/ent/example/ent/schema/todo.go @@ -1,7 +1,7 @@ package schema import ( - "ersteller-lib/schema/ent" + "git.gorlug.de/code/golang/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 2f3774f..ee600b3 100644 --- a/schema/ent/example/ent/schema/user.go +++ b/schema/ent/example/ent/schema/user.go @@ -1,7 +1,7 @@ package schema import ( - "ersteller-lib/schema/ent" + "git.gorlug.de/code/golang/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 144f47d..31664c8 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 f9b6002..449dfb2 100644 --- a/schema/ent/example/ent/todo/where.go +++ b/schema/ent/example/ent/todo/where.go @@ -3,7 +3,7 @@ package todo import ( - "ersteller-lib/schema/ent/example/ent/predicate" + "git.gorlug.de/code/golang/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 0dc2520..9f4ba90 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 39136e7..785500c 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" - "ersteller-lib/schema/ent/example/ent/predicate" - "ersteller-lib/schema/ent/example/ent/todo" + "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" + "git.gorlug.de/code/golang/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 edfe87a..bca656a 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 9c516b2..e37a381 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 a08d68d..0b5afd8 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 cd80c1e..48967d1 100644 --- a/schema/ent/example/ent/user/where.go +++ b/schema/ent/example/ent/user/where.go @@ -3,7 +3,7 @@ package user import ( - "ersteller-lib/schema/ent/example/ent/predicate" + "git.gorlug.de/code/golang/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 3c58c9d..68903d7 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 9c2c9db..56b5cff 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" - "ersteller-lib/schema/ent/example/ent/predicate" - "ersteller-lib/schema/ent/example/ent/user" + "git.gorlug.de/code/golang/ersteller-lib/schema/ent/example/ent/predicate" + "git.gorlug.de/code/golang/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 d5068f7..6c8670e 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 8e1123d..1baca78 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 265d46d..65f3201 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 97e4aee..460dfe6 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"