From d0c40aaecaf3a4bf868f4a7c487b65f9c24ed43f Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 15 Aug 2024 15:41:46 -0500 Subject: [PATCH] refactored DefaultValuing to be its own thing Signed-off-by: Matt Bruce --- VDS/Protocols/DefaultValuing.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VDS/Protocols/DefaultValuing.swift b/VDS/Protocols/DefaultValuing.swift index ffeaf0eb..7d156053 100644 --- a/VDS/Protocols/DefaultValuing.swift +++ b/VDS/Protocols/DefaultValuing.swift @@ -7,6 +7,6 @@ import Foundation -public protocol DefaultValuing: Valuing { +public protocol DefaultValuing { static var defaultValue: Self { get } }