mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
chore: update to go1.24 (#2566)
This commit is contained in:
parent
40baed291c
commit
713acefd7f
198 changed files with 968 additions and 881 deletions
|
|
@ -58,7 +58,7 @@ type errWriter struct {
|
|||
err error
|
||||
}
|
||||
|
||||
func (ew *errWriter) writeln(a ...interface{}) {
|
||||
func (ew *errWriter) writeln(a ...any) {
|
||||
if ew.err != nil {
|
||||
return
|
||||
}
|
||||
|
|
@ -66,7 +66,7 @@ func (ew *errWriter) writeln(a ...interface{}) {
|
|||
_, ew.err = fmt.Fprintln(ew.w, a...)
|
||||
}
|
||||
|
||||
func (ew *errWriter) writef(format string, a ...interface{}) {
|
||||
func (ew *errWriter) writef(format string, a ...any) {
|
||||
if ew.err != nil {
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue