Files
data-lite-coder/Sources/DLCDecoder/Protocols/Container.swift

7 lines
117 B
Swift

import Foundation
protocol Container {
associatedtype Decoder: Swift.Decoder
var decoder: Decoder { get }
}