michaelhenry/create-report

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

Summary

Maintainability
A
0 mins
Test Coverage
import Foundation
#if canImport(FoundationNetworking)
    import FoundationNetworking
#endif

public protocol ModelLoading {
    func load<Model>(request: URLRequest, decoder: Decoder) async throws -> Model where Model: Decodable
}