Files
wehub-resource-sync e9a2f726c9
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.13) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:29:51 +08:00

11 lines
277 B
Swift

// PR 7 — GET /admin/api/server-info. Used by ServerScreen to render the
// API Endpoints CodeChips and (later) by the Welcome wizard.
import Foundation
struct ServerInfoDTO: Codable, Equatable, Sendable {
let host: String
let port: Int
let aliases: [String]
}