fs: something that makes more sense.

This commit is contained in:
fiatjaf
2025-03-08 12:52:05 -03:00
parent d6a23bd00c
commit 3d961d4bec
8 changed files with 208 additions and 151 deletions

View File

@@ -11,7 +11,6 @@ import (
"net/url"
"os"
"slices"
"strconv"
"strings"
"time"
@@ -235,11 +234,6 @@ func leftPadKey(k string) string {
return strings.Repeat("0", 64-len(k)) + k
}
func hexToUint64(hexStr string) uint64 {
v, _ := strconv.ParseUint(hexStr[0:16], 16, 64)
return v
}
var colors = struct {
reset func(...any) (int, error)
italic func(...any) string