piper-app/Piper/Sources/Logic/Extensions/Pipe+Computed.swift
Javier Cicchelli f090784973 [App] Run terminal processes (#3)
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>
2024-10-05 08:34:34 +00:00

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) }
}