crabbox/internal/cli/fmt.go
2026-04-30 17:28:34 +01:00

8 lines
116 B
Go

package cli
import "fmt"
func sprintf(format string, args ...any) string {
return fmt.Sprintf(format, args...)
}