Update dependencies
This commit is contained in:
parent
1eff11b558
commit
88e9502e5c
12
Makefile
Normal file
12
Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
.PHONY: build fmt lint
|
||||
|
||||
build: fmt lint
|
||||
go build .
|
||||
|
||||
fmt:
|
||||
gofmt -w -r "interface{} -> any" .
|
||||
go fmt ./...
|
||||
|
||||
lint:
|
||||
go vet ./...
|
||||
staticcheck ./...
|
@ -5,6 +5,6 @@ func AsciiLowercase() (dict []int) {
|
||||
for i := 97; i <= 122; i++ {
|
||||
dict = append(dict, i)
|
||||
}
|
||||
|
||||
|
||||
return
|
||||
}
|
||||
|
2
go.mod
2
go.mod
@ -1,3 +1,3 @@
|
||||
module gitea.stuzer.link/stuzer05/passgen
|
||||
|
||||
go 1.22.3
|
||||
go 1.23
|
||||
|
Loading…
x
Reference in New Issue
Block a user