Implemented the "availableData" computed property for the Pipe+Computed extension in the app target.

This commit is contained in:
Javier Cicchelli 2024-10-05 09:45:17 +02:00
parent 89b14d4413
commit 12177be8db

View File

@ -0,0 +1,17 @@
//
// 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) }
}