OpenClawBot / Swabble /Sources /swabble /Commands /HealthCommand.swift
darkfire514's picture
Upload 581 files
4fc4790 verified
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")
}
}