Files
nak/nostrfs/helpers.go
2025-03-08 12:52:05 -03:00

9 lines
137 B
Go

package nostrfs
import "strconv"
func hexToUint64(hexStr string) uint64 {
v, _ := strconv.ParseUint(hexStr[0:16], 16, 64)
return v
}