mirror of
https://github.com/Ferrite-iOS/Ferrite.git
synced 2026-08-09 08:27:55 +00:00
15 lines
321 B
Swift
15 lines
321 B
Swift
//
|
|
// Task.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 7/18/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Task where Success == Never, Failure == Never {
|
|
static func sleep(seconds: Double) async throws {
|
|
let duration = UInt64(seconds * 1000000000)
|
|
try await Task.sleep(nanoseconds: duration)
|
|
}
|
|
}
|