This PR contains the work done to run terminal processes within the context of the app, conforming to Swift concurrency. Reviewed-on: #3 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
18 lines
280 B
Swift
18 lines
280 B
Swift
//
|
|
// Pipe+Computed.swift
|
|
// Piper
|
|
//
|
|
// Created by Javier Cicchelli on 05/10/2024.
|
|
// Copyright © 2024 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Pipe {
|
|
|
|
// MARK: Computed
|
|
|
|
var availableData: AsyncAvailableData { .init(self) }
|
|
|
|
}
|