data-lite-coder/Sources/DLCDecoder/Protocols/Container.swift
2025-08-05 20:09:18 +03:00

6 lines
117 B
Swift

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