maint: makefile

This commit is contained in:
vxclutch
2026-05-27 09:47:54 -04:00
parent 3c0f1a046c
commit fb7d0ee80d
5 changed files with 22 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ func New() http.Handler {
}
share := handlers.ShareData{
Version: lash.Version,
Version: lash.Version,
FileName: fp,
}

View File

@@ -2,6 +2,6 @@ package errx
import "fmt"
func Log(msg string, k... any) {
fmt.Printf("lash: " + msg + "\n", k...)
func Log(msg string, k ...any) {
fmt.Printf("lash: "+msg+"\n", k...)
}