AllDebrid is another debrid provider. Add support to Ferrite in addition to RealDebrid. The overall debrid login backend has changed to accomodate for a more agnostic app structure where more services can be added as needed. Also add some cosmetic changes to search so filters can be added while searching for a phrase. Signed-off-by: kingbri <bdashore3@proton.me>
20 lines
377 B
Swift
20 lines
377 B
Swift
//
|
|
// GithubModels.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 8/28/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public extension Github {
|
|
struct Release: Codable, Hashable, Sendable {
|
|
let htmlUrl: String
|
|
let tagName: String
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case htmlUrl = "html_url"
|
|
case tagName = "tag_name"
|
|
}
|
|
}
|
|
}
|