This commit is contained in:
parent
0ee4744afb
commit
3fd27ac833
3 changed files with 26 additions and 0 deletions
11
go/go.mod
Normal file
11
go/go.mod
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
module git.keine.cloud/oliver/pipeline-test-dependencies
|
||||||
|
|
||||||
|
go 1.21.5
|
||||||
|
|
||||||
|
require github.com/grokify/mogo v0.62.5
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/huandu/xstrings v1.4.0 // indirect
|
||||||
|
golang.org/x/exp v0.0.0-20231214170342-aacd6d4b4611 // indirect
|
||||||
|
golang.org/x/text v0.14.0 // indirect
|
||||||
|
)
|
8
go/go.sum
Normal file
8
go/go.sum
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
github.com/grokify/mogo v0.62.5 h1:qqkqpA38q3w3kC6ti9NyQbT3uVCODsRL1ymKs6tJjR4=
|
||||||
|
github.com/grokify/mogo v0.62.5/go.mod h1:2VrzVxJClb3+AQ5j4vsynGtMyKGe+ioMQQLTNcAx4VM=
|
||||||
|
github.com/huandu/xstrings v1.4.0 h1:D17IlohoQq4UcpqD7fDk80P7l+lwAmlFaBHgOipl2FU=
|
||||||
|
github.com/huandu/xstrings v1.4.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE=
|
||||||
|
golang.org/x/exp v0.0.0-20231214170342-aacd6d4b4611 h1:qCEDpW1G+vcj3Y7Fy52pEM1AWm3abj8WimGYejI3SC4=
|
||||||
|
golang.org/x/exp v0.0.0-20231214170342-aacd6d4b4611/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI=
|
||||||
|
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
|
||||||
|
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
|
7
go/main.go
Normal file
7
go/main.go
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "github.com/grokify/mogo/fmt/fmtutil"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmtutil.SprintfFormatLeadingCharLength("test", 2)
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue