Move models to its own package

This commit is contained in:
Maximilian 2023-02-08 19:39:53 -06:00
parent f2f2187872
commit 9e4216301d
3 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ package controllers
import ( import (
"GoWeb/app" "GoWeb/app"
"GoWeb/database/models" "GoWeb/models"
"GoWeb/security" "GoWeb/security"
"GoWeb/templating" "GoWeb/templating"
"net/http" "net/http"

View File

@ -2,7 +2,7 @@ package controllers
import ( import (
"GoWeb/app" "GoWeb/app"
"GoWeb/database/models" "GoWeb/models"
"GoWeb/security" "GoWeb/security"
"log" "log"
"net/http" "net/http"