From 12177be8db1cfc535f31acd7f7b61f3bfad1b48c Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 5 Oct 2024 09:45:17 +0200 Subject: [PATCH] Implemented the "availableData" computed property for the Pipe+Computed extension in the app target. --- .../Logic/Extensions/Pipe+Computed.swift | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Piper/Sources/Logic/Extensions/Pipe+Computed.swift diff --git a/Piper/Sources/Logic/Extensions/Pipe+Computed.swift b/Piper/Sources/Logic/Extensions/Pipe+Computed.swift new file mode 100644 index 0000000..2622d39 --- /dev/null +++ b/Piper/Sources/Logic/Extensions/Pipe+Computed.swift @@ -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) } + +}