Update import paths

This commit is contained in:
2025-10-23 19:51:28 +01:00
parent 21ebc9c34b
commit b098915ab9
44 changed files with 113 additions and 111 deletions

View File

@@ -3,7 +3,7 @@ package services
import (
"database/sql"
"log"
"synlotto-website/models"
"synlotto-website/internal/models"
)
func GetDrawResultForTicket(db *sql.DB, game string, drawDate string) models.DrawResult {

View File

@@ -3,8 +3,8 @@ package matcher
import (
"database/sql"
"fmt"
"synlotto-website/helpers"
"synlotto-website/models"
"synlotto-website/internal/helpers"
"synlotto-website/internal/models"
thunderballRules "synlotto-website/rules"
)

View File

@@ -5,13 +5,13 @@ import (
"fmt"
"log"
lotteryTicketHandlers "synlotto-website/handlers/lottery/tickets"
lotteryTicketHandlers "synlotto-website/internal/handlers/lottery/tickets"
thunderballrules "synlotto-website/rules"
services "synlotto-website/services/draws"
"synlotto-website/helpers"
"synlotto-website/internal/helpers"
"synlotto-website/internal/models"
"synlotto-website/matcher"
"synlotto-website/models"
)
func RunTicketMatching(db *sql.DB, triggeredBy string) (models.MatchRunStats, error) {