Use strict concurrency checking in Xcode 14 to find misuses with Swift concurrency. Cleanup files and rearrange them along with fixing comment headers. Signed-off-by: kingbri <bdashore3@proton.me>
18 lines
330 B
Swift
18 lines
330 B
Swift
//
|
|
// GithubModels.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 8/28/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct GithubRelease: Codable, Hashable, Sendable {
|
|
let htmlUrl: String
|
|
let tagName: String
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case htmlUrl = "html_url"
|
|
case tagName = "tag_name"
|
|
}
|
|
}
|