Skip to content

Commit

Permalink
[FIX] Fix incorrect module import paths
Browse files Browse the repository at this point in the history
- Replaced incorrect import paths.
- Cleaned and updated Go module dependencies using `go mod tidy`.
- Resolved issues with Go module resolution and module caching.
  • Loading branch information
atlet99 committed Oct 3, 2024
1 parent 8a8f2d5 commit 4a83ac9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"strings"
"text/template"

"github.com/atlet99/resume-generator/resume-generator/env"
"github.com/atlet99/resume-generator/resume-generator/formats"
"github.com/atlet99/resume-generator/resume-generator/models"
"github.com/atlet99/resume-generator/resume-generator/utils"
"github.com/atlet99/resume-generator/env"
"github.com/atlet99/resume-generator/formats"
"github.com/atlet99/resume-generator/models"
"github.com/atlet99/resume-generator/utils"
)

func main() {
Expand Down

0 comments on commit 4a83ac9

Please sign in to comment.