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