@enclaved/encli
Version:
CLI utilities for working with enclaved application server for TEEs
17 lines (16 loc) • 511 B
TypeScript
/**
* Inspect container command implementation
*/
import { Command } from 'commander';
/**
* Run the inspect command
* @param pubkey Public key of the service
* @param relay Relay URL of the service
* @returns Result of the inspect operation
*/
export declare function runInspectCommand(pubkey: string, relay: string): Promise<void>;
/**
* Register the inspect command with the CLI
* @param program Commander program instance
*/
export declare function registerInspectCommand(program: Command): void;