From 1598616ce11c3976649e91c8e4272c515d75eef7 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Wed, 19 Apr 2023 22:23:04 +0200 Subject: [PATCH] Defined the Filter protocol. --- Sources/Protocols/Filter.swift | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Sources/Protocols/Filter.swift diff --git a/Sources/Protocols/Filter.swift b/Sources/Protocols/Filter.swift new file mode 100644 index 0000000..39a805c --- /dev/null +++ b/Sources/Protocols/Filter.swift @@ -0,0 +1,9 @@ +import Communications + +protocol Filter { + + // MARK: Functions + + func makeParameters() -> Endpoint.Parameters + +}