Skip to content

Commit

Permalink
fix(package) package xxx is not in GOROOT
Browse files Browse the repository at this point in the history
  • Loading branch information
anhgelus committed May 6, 2023
1 parent fc0d4c4 commit 2ebcb1a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package main

import (
"embed"
"license-generator/src/args"
"license-generator/src/config"
"license-generator/src/utils"
"github.com/anhgelus/license-generator/src/args"
"github.com/anhgelus/license-generator/src/config"
"github.com/anhgelus/license-generator/src/utils"
"os"
"strings"
"text/template"
Expand Down
2 changes: 1 addition & 1 deletion src/args/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package args

import (
"errors"
"license-generator/src/utils"
"github.com/anhgelus/license-generator/src/utils"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion src/args/manager.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package args

import (
"license-generator/src/utils"
"github.com/anhgelus/license-generator/src/utils"
"os"
"strings"
)
Expand Down
4 changes: 2 additions & 2 deletions src/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package config

import (
"errors"
"license-generator/src/args"
"license-generator/src/utils"
"github.com/anhgelus/license-generator/src/args"
"github.com/anhgelus/license-generator/src/utils"
"os"
"regexp"
)
Expand Down

0 comments on commit 2ebcb1a

Please sign in to comment.