mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-07 20:10:08 +02:00
15 lines
255 B
Swift
15 lines
255 B
Swift
//
|
|
// UpdateManifest.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 02/02/2023.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct ReleaseManifest: Codable {
|
|
let url: String
|
|
let sha256: String
|
|
}
|