Fixed module and importa paths

This commit is contained in:
Celestino Amoroso 2024-02-19 12:45:29 +01:00
parent 70ba95098e
commit 0ff4d8b1a9
4 changed files with 10 additions and 12 deletions

View File

@ -6,7 +6,7 @@ import (
"strings"
sq "github.com/kballard/go-shellquote"
"portale-stac.it/packages/utils"
"git.portale-stac.it/go-pkg/utils"
)
type DictSetFlag uint16

View File

@ -7,7 +7,7 @@ import (
"strconv"
"strings"
"portale-stac.it/packages/golang"
"git.portale-stac.it/go-pkg/golang"
)
const varIntro = '$'

14
go.mod
View File

@ -1,17 +1,11 @@
module portale-stac.it/packages/text
module git.portale-stac.it/go-pkg/text
go 1.21.6
require github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
require (
portale-stac.it/packages/golang v0.0.0
portale-stac.it/packages/utils v0.0.0
git.portale-stac.it/go-pkg/golang v0.0.0-20240219085442-2f0ac03cad1b
git.portale-stac.it/go-pkg/utils v0.1.1
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
)
require golang.org/x/text v0.14.0 // indirect
replace (
portale-stac.it/packages/golang => ../golang
portale-stac.it/packages/utils => ../utils
)

4
go.sum
View File

@ -1,3 +1,7 @@
git.portale-stac.it/go-pkg/golang v0.0.0-20240219085442-2f0ac03cad1b h1:Sberp8pTOoER8U+QF+WMbt3G//e+AnVSRUZJdVqhmww=
git.portale-stac.it/go-pkg/golang v0.0.0-20240219085442-2f0ac03cad1b/go.mod h1:GAG043QWtbDDwQqhXVrk8jYn4qmiZq4yoj3OA3mifQw=
git.portale-stac.it/go-pkg/utils v0.1.1 h1:NQbhuddV1qdvE8TtUs6N6/hFitaQ8GCVuzXOp0BfS4A=
git.portale-stac.it/go-pkg/utils v0.1.1/go.mod h1:PebQ45Qbe89aMTd3wcbcx1bkpNRW4/frNLnpuyZYovU=
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs=
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8=
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=