package utils func HoursToMicroseconds[K uint32 | uint64](hours K) int64 { return int64(hours) * 60 * 60 * 1000000 }