mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-04 11:53:30 +01:00
6 lines
170 B
Swift
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))
|
|
}
|
|
}
|