Files
clawdbot/Swabble/Sources/swabble/Commands/HealthCommand.swift
2025-12-06 03:55:46 +01:00

17 lines
342 B
Swift

import Commander
import Foundation
@MainActor
struct HealthCommand: ParsableCommand {
static var commandDescription: CommandDescription {
CommandDescription(commandName: "health", abstract: "Health probe")
}
init() {}
init(parsed: ParsedValues) {}
mutating func run() async throws {
print("ok")
}
}