7 lines
117 B
Swift
7 lines
117 B
Swift
import Foundation
|
|
|
|
protocol Container {
|
|
associatedtype Decoder: Swift.Decoder
|
|
var decoder: Decoder { get }
|
|
}
|