Refactoring continues.

This commit is contained in:
2025-10-23 21:51:15 +01:00
parent 82f457c5a4
commit 0f60be448d
12 changed files with 248 additions and 249 deletions

View File

@@ -9,7 +9,7 @@ import (
"strconv"
templateHelpers "synlotto-website/internal/helpers/template"
services "synlotto-website/services/tickets"
services "synlotto-website/internal/services/tickets"
"synlotto-website/internal/models"
)

View File

@@ -13,7 +13,7 @@ import (
httpHelpers "synlotto-website/internal/helpers/http"
securityHelpers "synlotto-website/internal/helpers/security"
templateHelpers "synlotto-website/internal/helpers/template"
draws "synlotto-website/services/draws"
draws "synlotto-website/internal/services/draws"
"synlotto-website/internal/helpers"
"synlotto-website/internal/models"

View File

@@ -6,12 +6,12 @@ import (
"net/http"
templateHandlers "synlotto-website/internal/handlers/template"
"synlotto-website/internal/helpers"
httpHelpers "synlotto-website/internal/helpers/http"
securityHelpers "synlotto-website/internal/helpers/security"
templateHelpers "synlotto-website/internal/helpers/template"
"synlotto-website/internal/storage"
"synlotto-website/internal/helpers"
storage "synlotto-website/internal/storage/mysql"
)
func MessagesInboxHandler(db *sql.DB) http.HandlerFunc {