diff --git a/controller/controller.go b/controller/controller.go index 7579d7b..19e43c4 100644 --- a/controller/controller.go +++ b/controller/controller.go @@ -5,8 +5,8 @@ import ( "fmt" "net/http" - "goweb/middleware" - "goweb/services" + "github.com/mikestefanello/pagoda/middleware" + "github.com/mikestefanello/pagoda/services" "github.com/eko/gocache/v2/marshaler" diff --git a/controller/controller_test.go b/controller/controller_test.go index 3c85b19..49ad2a9 100644 --- a/controller/controller_test.go +++ b/controller/controller_test.go @@ -8,11 +8,11 @@ import ( "os" "testing" - "goweb/config" - "goweb/htmx" - "goweb/middleware" - "goweb/services" - "goweb/tests" + "github.com/mikestefanello/pagoda/config" + "github.com/mikestefanello/pagoda/htmx" + "github.com/mikestefanello/pagoda/middleware" + "github.com/mikestefanello/pagoda/services" + "github.com/mikestefanello/pagoda/tests" "github.com/eko/gocache/v2/store" diff --git a/controller/form_test.go b/controller/form_test.go index 1679dd4..c289043 100644 --- a/controller/form_test.go +++ b/controller/form_test.go @@ -3,7 +3,7 @@ package controller import ( "testing" - "goweb/tests" + "github.com/mikestefanello/pagoda/tests" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/controller/page.go b/controller/page.go index 0922f71..cca16fe 100644 --- a/controller/page.go +++ b/controller/page.go @@ -5,10 +5,10 @@ import ( "net/http" "time" - "goweb/context" - "goweb/ent" - "goweb/htmx" - "goweb/msg" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/htmx" + "github.com/mikestefanello/pagoda/msg" echomw "github.com/labstack/echo/v4/middleware" diff --git a/controller/page_test.go b/controller/page_test.go index b07620f..df1c7e6 100644 --- a/controller/page_test.go +++ b/controller/page_test.go @@ -4,9 +4,9 @@ import ( "net/http" "testing" - "goweb/context" - "goweb/msg" - "goweb/tests" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/msg" + "github.com/mikestefanello/pagoda/tests" echomw "github.com/labstack/echo/v4/middleware" "github.com/stretchr/testify/assert" diff --git a/controller/pager_test.go b/controller/pager_test.go index f7fb89d..cdc06b7 100644 --- a/controller/pager_test.go +++ b/controller/pager_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "goweb/tests" + "github.com/mikestefanello/pagoda/tests" "github.com/stretchr/testify/assert" ) diff --git a/ent/client.go b/ent/client.go index 59dc9fc..d431c9d 100644 --- a/ent/client.go +++ b/ent/client.go @@ -7,10 +7,10 @@ import ( "fmt" "log" - "goweb/ent/migrate" + "github.com/mikestefanello/pagoda/ent/migrate" - "goweb/ent/passwordtoken" - "goweb/ent/user" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/user" "entgo.io/ent/dialect" "entgo.io/ent/dialect/sql" diff --git a/ent/ent.go b/ent/ent.go index 23d08c9..cfd8400 100644 --- a/ent/ent.go +++ b/ent/ent.go @@ -5,8 +5,9 @@ package ent import ( "errors" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/user" + + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/user" "entgo.io/ent" "entgo.io/ent/dialect/sql" diff --git a/ent/enttest/enttest.go b/ent/enttest/enttest.go index 65fa399..0d124a9 100644 --- a/ent/enttest/enttest.go +++ b/ent/enttest/enttest.go @@ -4,9 +4,11 @@ package enttest import ( "context" - "goweb/ent" + + "github.com/mikestefanello/pagoda/ent" + // required by schema hooks. - _ "goweb/ent/runtime" + _ "github.com/mikestefanello/pagoda/ent/runtime" "entgo.io/ent/dialect/sql/schema" ) diff --git a/ent/hook/hook.go b/ent/hook/hook.go index 00aec9a..5aa5192 100644 --- a/ent/hook/hook.go +++ b/ent/hook/hook.go @@ -5,7 +5,8 @@ package hook import ( "context" "fmt" - "goweb/ent" + + "github.com/mikestefanello/pagoda/ent" ) // The PasswordTokenFunc type is an adapter to allow the use of ordinary diff --git a/ent/mutation.go b/ent/mutation.go index bc344c1..766209b 100644 --- a/ent/mutation.go +++ b/ent/mutation.go @@ -5,12 +5,13 @@ package ent import ( "context" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/predicate" - "goweb/ent/user" "sync" "time" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/predicate" + "github.com/mikestefanello/pagoda/ent/user" + "entgo.io/ent" ) diff --git a/ent/passwordtoken.go b/ent/passwordtoken.go index 86f92e9..d28d7a9 100644 --- a/ent/passwordtoken.go +++ b/ent/passwordtoken.go @@ -4,11 +4,12 @@ package ent import ( "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/user" "strings" "time" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/user" + "entgo.io/ent/dialect/sql" ) diff --git a/ent/passwordtoken/where.go b/ent/passwordtoken/where.go index cec00b7..bcbc8b5 100644 --- a/ent/passwordtoken/where.go +++ b/ent/passwordtoken/where.go @@ -3,9 +3,10 @@ package passwordtoken import ( - "goweb/ent/predicate" "time" + "github.com/mikestefanello/pagoda/ent/predicate" + "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" ) diff --git a/ent/passwordtoken_create.go b/ent/passwordtoken_create.go index 3a7614f..6cfd214 100644 --- a/ent/passwordtoken_create.go +++ b/ent/passwordtoken_create.go @@ -6,10 +6,11 @@ import ( "context" "errors" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/user" "time" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/user" + "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" ) diff --git a/ent/passwordtoken_delete.go b/ent/passwordtoken_delete.go index 6a9ee38..b97dd59 100644 --- a/ent/passwordtoken_delete.go +++ b/ent/passwordtoken_delete.go @@ -5,8 +5,9 @@ package ent import ( "context" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/predicate" + + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/predicate" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/ent/passwordtoken_query.go b/ent/passwordtoken_query.go index 1e34e6a..f67db3d 100644 --- a/ent/passwordtoken_query.go +++ b/ent/passwordtoken_query.go @@ -6,11 +6,12 @@ import ( "context" "errors" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/predicate" - "goweb/ent/user" "math" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/predicate" + "github.com/mikestefanello/pagoda/ent/user" + "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" diff --git a/ent/passwordtoken_update.go b/ent/passwordtoken_update.go index 9dc5cad..3f5566c 100644 --- a/ent/passwordtoken_update.go +++ b/ent/passwordtoken_update.go @@ -6,11 +6,12 @@ import ( "context" "errors" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/predicate" - "goweb/ent/user" "time" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/predicate" + "github.com/mikestefanello/pagoda/ent/user" + "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" diff --git a/ent/runtime/runtime.go b/ent/runtime/runtime.go index 9c3be62..0147026 100644 --- a/ent/runtime/runtime.go +++ b/ent/runtime/runtime.go @@ -3,10 +3,11 @@ package runtime import ( - "goweb/ent/passwordtoken" - "goweb/ent/schema" - "goweb/ent/user" "time" + + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/schema" + "github.com/mikestefanello/pagoda/ent/user" ) // The init function reads all schema descriptors with runtime code diff --git a/ent/schema/user.go b/ent/schema/user.go index 9d2a79b..7522a77 100644 --- a/ent/schema/user.go +++ b/ent/schema/user.go @@ -5,8 +5,8 @@ import ( "strings" "time" - ge "goweb/ent" - "goweb/ent/hook" + ge "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/ent/hook" "entgo.io/ent" "entgo.io/ent/schema/edge" diff --git a/ent/user.go b/ent/user.go index 2dfe64a..5ac1079 100644 --- a/ent/user.go +++ b/ent/user.go @@ -4,10 +4,11 @@ package ent import ( "fmt" - "goweb/ent/user" "strings" "time" + "github.com/mikestefanello/pagoda/ent/user" + "entgo.io/ent/dialect/sql" ) diff --git a/ent/user/where.go b/ent/user/where.go index 550ba77..ea70676 100644 --- a/ent/user/where.go +++ b/ent/user/where.go @@ -3,9 +3,10 @@ package user import ( - "goweb/ent/predicate" "time" + "github.com/mikestefanello/pagoda/ent/predicate" + "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" ) diff --git a/ent/user_create.go b/ent/user_create.go index ca26043..9fb4ab9 100644 --- a/ent/user_create.go +++ b/ent/user_create.go @@ -6,10 +6,11 @@ import ( "context" "errors" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/user" "time" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/user" + "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" ) diff --git a/ent/user_delete.go b/ent/user_delete.go index 2f5e308..29047bf 100644 --- a/ent/user_delete.go +++ b/ent/user_delete.go @@ -5,8 +5,9 @@ package ent import ( "context" "fmt" - "goweb/ent/predicate" - "goweb/ent/user" + + "github.com/mikestefanello/pagoda/ent/predicate" + "github.com/mikestefanello/pagoda/ent/user" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/ent/user_query.go b/ent/user_query.go index c955ecc..ad2bf1f 100644 --- a/ent/user_query.go +++ b/ent/user_query.go @@ -7,11 +7,12 @@ import ( "database/sql/driver" "errors" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/predicate" - "goweb/ent/user" "math" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/predicate" + "github.com/mikestefanello/pagoda/ent/user" + "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" diff --git a/ent/user_update.go b/ent/user_update.go index bedec7a..a6826ea 100644 --- a/ent/user_update.go +++ b/ent/user_update.go @@ -5,9 +5,10 @@ package ent import ( "context" "fmt" - "goweb/ent/passwordtoken" - "goweb/ent/predicate" - "goweb/ent/user" + + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/predicate" + "github.com/mikestefanello/pagoda/ent/user" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" diff --git a/funcmap/funcmap.go b/funcmap/funcmap.go index e847b11..6ee2ad9 100644 --- a/funcmap/funcmap.go +++ b/funcmap/funcmap.go @@ -6,7 +6,7 @@ import ( "reflect" "strings" - "goweb/config" + "github.com/mikestefanello/pagoda/config" "github.com/Masterminds/sprig" "github.com/labstack/gommon/random" diff --git a/funcmap/funcmap_test.go b/funcmap/funcmap_test.go index 8c27005..ac2418d 100644 --- a/funcmap/funcmap_test.go +++ b/funcmap/funcmap_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "goweb/config" + "github.com/mikestefanello/pagoda/config" "github.com/stretchr/testify/assert" ) diff --git a/go.mod b/go.mod index c2e1442..fdd65a2 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module goweb +module github.com/mikestefanello/pagoda go 1.17 diff --git a/htmx/htmx_test.go b/htmx/htmx_test.go index 09a957f..b210a60 100644 --- a/htmx/htmx_test.go +++ b/htmx/htmx_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "goweb/tests" + "github.com/mikestefanello/pagoda/tests" "github.com/stretchr/testify/assert" diff --git a/main.go b/main.go index c8bb37f..d2c2715 100644 --- a/main.go +++ b/main.go @@ -9,8 +9,8 @@ import ( "os/signal" "time" - "goweb/routes" - "goweb/services" + "github.com/mikestefanello/pagoda/routes" + "github.com/mikestefanello/pagoda/services" ) func main() { diff --git a/middleware/auth.go b/middleware/auth.go index 8b20037..26bb812 100644 --- a/middleware/auth.go +++ b/middleware/auth.go @@ -3,10 +3,10 @@ package middleware import ( "net/http" - "goweb/context" - "goweb/ent" - "goweb/msg" - "goweb/services" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/msg" + "github.com/mikestefanello/pagoda/services" "github.com/labstack/echo/v4" ) diff --git a/middleware/auth_test.go b/middleware/auth_test.go index d74dd42..c9b7dee 100644 --- a/middleware/auth_test.go +++ b/middleware/auth_test.go @@ -5,9 +5,9 @@ import ( "net/http" "testing" - "goweb/context" - "goweb/ent" - "goweb/tests" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/tests" "github.com/stretchr/testify/require" diff --git a/middleware/cache.go b/middleware/cache.go index ca59fbf..5bd6bfc 100644 --- a/middleware/cache.go +++ b/middleware/cache.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - "goweb/context" + "github.com/mikestefanello/pagoda/context" "github.com/eko/gocache/v2/cache" "github.com/eko/gocache/v2/marshaler" diff --git a/middleware/cache_test.go b/middleware/cache_test.go index 8fb447d..36e03a2 100644 --- a/middleware/cache_test.go +++ b/middleware/cache_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "goweb/tests" + "github.com/mikestefanello/pagoda/tests" "github.com/stretchr/testify/require" diff --git a/middleware/entity.go b/middleware/entity.go index a9fa2af..8137fbe 100644 --- a/middleware/entity.go +++ b/middleware/entity.go @@ -4,9 +4,9 @@ import ( "net/http" "strconv" - "goweb/context" - "goweb/ent" - "goweb/ent/user" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/ent/user" "github.com/labstack/echo/v4" ) diff --git a/middleware/entity_test.go b/middleware/entity_test.go index b368293..6a83b27 100644 --- a/middleware/entity_test.go +++ b/middleware/entity_test.go @@ -4,9 +4,9 @@ import ( "fmt" "testing" - "goweb/context" - "goweb/ent" - "goweb/tests" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/tests" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/middleware/log_test.go b/middleware/log_test.go index 270fc5e..d0c28ef 100644 --- a/middleware/log_test.go +++ b/middleware/log_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "goweb/tests" + "github.com/mikestefanello/pagoda/tests" "github.com/labstack/echo/v4" diff --git a/middleware/middleware_test.go b/middleware/middleware_test.go index 2aa60c8..8752c9f 100644 --- a/middleware/middleware_test.go +++ b/middleware/middleware_test.go @@ -4,10 +4,10 @@ import ( "os" "testing" - "goweb/config" - "goweb/ent" - "goweb/services" - "goweb/tests" + "github.com/mikestefanello/pagoda/config" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/services" + "github.com/mikestefanello/pagoda/tests" ) var ( diff --git a/msg/msg_test.go b/msg/msg_test.go index 9570885..8f4a333 100644 --- a/msg/msg_test.go +++ b/msg/msg_test.go @@ -3,7 +3,7 @@ package msg import ( "testing" - "goweb/tests" + "github.com/mikestefanello/pagoda/tests" "github.com/go-playground/assert/v2" "github.com/stretchr/testify/require" diff --git a/routes/about.go b/routes/about.go index 6eeba36..bdd809d 100644 --- a/routes/about.go +++ b/routes/about.go @@ -3,7 +3,7 @@ package routes import ( "html/template" - "goweb/controller" + "github.com/mikestefanello/pagoda/controller" "github.com/labstack/echo/v4" ) diff --git a/routes/contact.go b/routes/contact.go index 0f76036..4a08e65 100644 --- a/routes/contact.go +++ b/routes/contact.go @@ -1,8 +1,8 @@ package routes import ( - "goweb/context" - "goweb/controller" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/controller" "github.com/labstack/echo/v4" ) diff --git a/routes/error.go b/routes/error.go index db037b5..0dc28bc 100644 --- a/routes/error.go +++ b/routes/error.go @@ -3,7 +3,7 @@ package routes import ( "net/http" - "goweb/controller" + "github.com/mikestefanello/pagoda/controller" "github.com/labstack/echo/v4" ) diff --git a/routes/forgot_password.go b/routes/forgot_password.go index 03f59da..d1f860d 100644 --- a/routes/forgot_password.go +++ b/routes/forgot_password.go @@ -4,11 +4,11 @@ import ( "fmt" "strings" - "goweb/context" - "goweb/controller" - "goweb/ent" - "goweb/ent/user" - "goweb/msg" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/controller" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/ent/user" + "github.com/mikestefanello/pagoda/msg" "github.com/labstack/echo/v4" ) diff --git a/routes/home.go b/routes/home.go index 8cd9c9f..20ae798 100644 --- a/routes/home.go +++ b/routes/home.go @@ -3,7 +3,7 @@ package routes import ( "fmt" - "goweb/controller" + "github.com/mikestefanello/pagoda/controller" "github.com/labstack/echo/v4" ) diff --git a/routes/login.go b/routes/login.go index a9d03c3..b7cc415 100644 --- a/routes/login.go +++ b/routes/login.go @@ -4,11 +4,11 @@ import ( "fmt" "strings" - "goweb/context" - "goweb/controller" - "goweb/ent" - "goweb/ent/user" - "goweb/msg" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/controller" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/ent/user" + "github.com/mikestefanello/pagoda/msg" "github.com/labstack/echo/v4" ) diff --git a/routes/logout.go b/routes/logout.go index 5b55876..78cc051 100644 --- a/routes/logout.go +++ b/routes/logout.go @@ -1,8 +1,8 @@ package routes import ( - "goweb/controller" - "goweb/msg" + "github.com/mikestefanello/pagoda/controller" + "github.com/mikestefanello/pagoda/msg" "github.com/labstack/echo/v4" ) diff --git a/routes/register.go b/routes/register.go index 3e38b6a..6e22111 100644 --- a/routes/register.go +++ b/routes/register.go @@ -1,10 +1,10 @@ package routes import ( - "goweb/context" - "goweb/controller" - "goweb/ent" - "goweb/msg" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/controller" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/msg" "github.com/labstack/echo/v4" ) diff --git a/routes/reset_password.go b/routes/reset_password.go index c1a1640..169e601 100644 --- a/routes/reset_password.go +++ b/routes/reset_password.go @@ -1,11 +1,11 @@ package routes import ( - "goweb/context" - "goweb/controller" - "goweb/ent" - "goweb/ent/user" - "goweb/msg" + "github.com/mikestefanello/pagoda/context" + "github.com/mikestefanello/pagoda/controller" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/ent/user" + "github.com/mikestefanello/pagoda/msg" "github.com/labstack/echo/v4" ) diff --git a/routes/router.go b/routes/router.go index 2d3931f..47454d8 100644 --- a/routes/router.go +++ b/routes/router.go @@ -3,10 +3,10 @@ package routes import ( "net/http" - "goweb/config" - "goweb/controller" - "goweb/middleware" - "goweb/services" + "github.com/mikestefanello/pagoda/config" + "github.com/mikestefanello/pagoda/controller" + "github.com/mikestefanello/pagoda/middleware" + "github.com/mikestefanello/pagoda/services" "github.com/gorilla/sessions" "github.com/labstack/echo-contrib/session" diff --git a/routes/routes_test.go b/routes/routes_test.go index b7552be..c068d6c 100644 --- a/routes/routes_test.go +++ b/routes/routes_test.go @@ -7,8 +7,8 @@ import ( "os" "testing" - "goweb/config" - "goweb/services" + "github.com/mikestefanello/pagoda/config" + "github.com/mikestefanello/pagoda/services" "github.com/PuerkitoBio/goquery" "github.com/stretchr/testify/assert" diff --git a/routes/search.go b/routes/search.go index a6739ad..3292f5a 100644 --- a/routes/search.go +++ b/routes/search.go @@ -4,7 +4,7 @@ import ( "fmt" "math/rand" - "goweb/controller" + "github.com/mikestefanello/pagoda/controller" "github.com/labstack/echo/v4" ) diff --git a/services/auth.go b/services/auth.go index 330cacb..94acba7 100644 --- a/services/auth.go +++ b/services/auth.go @@ -5,10 +5,10 @@ import ( "encoding/hex" "time" - "goweb/config" - "goweb/ent" - "goweb/ent/passwordtoken" - "goweb/ent/user" + "github.com/mikestefanello/pagoda/config" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/user" "github.com/labstack/echo-contrib/session" "github.com/labstack/echo/v4" diff --git a/services/auth_test.go b/services/auth_test.go index bc335c4..c56c8c9 100644 --- a/services/auth_test.go +++ b/services/auth_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "goweb/ent/passwordtoken" - "goweb/ent/user" + "github.com/mikestefanello/pagoda/ent/passwordtoken" + "github.com/mikestefanello/pagoda/ent/user" "github.com/stretchr/testify/require" diff --git a/services/container.go b/services/container.go index cf26bc2..d1fd7f8 100644 --- a/services/container.go +++ b/services/container.go @@ -14,9 +14,9 @@ import ( "github.com/labstack/echo/v4" "github.com/labstack/gommon/log" - "goweb/config" - "goweb/ent" - _ "goweb/ent/runtime" + "github.com/mikestefanello/pagoda/config" + "github.com/mikestefanello/pagoda/ent" + _ "github.com/mikestefanello/pagoda/ent/runtime" ) // Container contains all services used by the application and provides an easy way to handle dependency diff --git a/services/mail.go b/services/mail.go index 368044d..81659a9 100644 --- a/services/mail.go +++ b/services/mail.go @@ -3,7 +3,7 @@ package services import ( "fmt" - "goweb/config" + "github.com/mikestefanello/pagoda/config" "github.com/labstack/echo/v4" ) diff --git a/services/services_test.go b/services/services_test.go index a67fb07..30e7387 100644 --- a/services/services_test.go +++ b/services/services_test.go @@ -4,9 +4,9 @@ import ( "os" "testing" - "goweb/config" - "goweb/ent" - "goweb/tests" + "github.com/mikestefanello/pagoda/config" + "github.com/mikestefanello/pagoda/ent" + "github.com/mikestefanello/pagoda/tests" "github.com/labstack/echo/v4" ) diff --git a/services/template_renderer.go b/services/template_renderer.go index aadb7b9..fc33270 100644 --- a/services/template_renderer.go +++ b/services/template_renderer.go @@ -10,8 +10,8 @@ import ( "runtime" "sync" - "goweb/config" - "goweb/funcmap" + "github.com/mikestefanello/pagoda/config" + "github.com/mikestefanello/pagoda/funcmap" ) // TemplateRenderer provides a flexible and easy to use method of rendering simple templates or complex sets of diff --git a/services/template_renderer_test.go b/services/template_renderer_test.go index 07d9a1f..d51a46c 100644 --- a/services/template_renderer_test.go +++ b/services/template_renderer_test.go @@ -4,7 +4,7 @@ import ( "io/ioutil" "testing" - "goweb/config" + "github.com/mikestefanello/pagoda/config" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/tests/tests.go b/tests/tests.go index 5c4a684..6bad6a0 100644 --- a/tests/tests.go +++ b/tests/tests.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "goweb/ent" + "github.com/mikestefanello/pagoda/ent" "github.com/go-playground/assert/v2" "github.com/stretchr/testify/require"