refactored DefaultValuing to be its own thing

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-08-15 15:41:46 -05:00
parent e5d9f77d3d
commit d0c40aaeca

View File

@ -7,6 +7,6 @@
import Foundation
public protocol DefaultValuing: Valuing {
public protocol DefaultValuing {
static var defaultValue: Self { get }
}