Files
nak/nostrfs/helpers.go
2025-03-09 00:17:56 -03:00

9 lines
138 B
Go

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