Fix module paths for GitHub repository structure

- Update go.mod files to use github.com/Fimeg/RedFlag module path
- Fix all import statements across server and agent code
- Resolves build errors when cloning from GitHub
- Utils package (version comparison) is actually needed and working
This commit is contained in:
Fimeg
2025-10-29 11:53:20 -04:00
parent 56ed1069e0
commit e40cb14945
24 changed files with 45 additions and 45 deletions

View File

@@ -7,8 +7,8 @@ import (
"strconv"
"time"
"github.com/aggregator-project/aggregator-server/internal/database/queries"
"github.com/aggregator-project/aggregator-server/internal/models"
"github.com/Fimeg/RedFlag/aggregator-server/internal/database/queries"
"github.com/Fimeg/RedFlag/aggregator-server/internal/models"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
)