michaelhenry/create-report

View on GitHub
Sources/GithubChecks/Protocols/Decoder.swift

Summary

Maintainability
A
0 mins
Test Coverage
import Foundation

public protocol Decoder {
    func decode<Model>(_ type: Model.Type, from data: Data) throws -> Model where Model: Decodable
}