Files
xtool-mirror/Sources/XKit/Utilities/Task+Utils.swift
2025-05-06 11:01:25 +05:30

6 lines
170 B
Swift

extension Task<Never, Never> {
public static func sleep(seconds: Double) async throws {
try await sleep(nanoseconds: UInt64(seconds * 1_000_000_000))
}
}