diff --git a/controllers/getController.go b/controllers/getController.go index 4e3caef..c4f9a27 100644 --- a/controllers/getController.go +++ b/controllers/getController.go @@ -2,7 +2,7 @@ package controllers import ( "GoWeb/app" - "GoWeb/database/models" + "GoWeb/models" "GoWeb/security" "GoWeb/templating" "net/http" diff --git a/controllers/postController.go b/controllers/postController.go index cae876e..742c8f9 100644 --- a/controllers/postController.go +++ b/controllers/postController.go @@ -2,7 +2,7 @@ package controllers import ( "GoWeb/app" - "GoWeb/database/models" + "GoWeb/models" "GoWeb/security" "log" "net/http" diff --git a/database/models/user.go b/models/user.go similarity index 100% rename from database/models/user.go rename to models/user.go