mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-17 03:10:38 +09:00
15 lines
423 B
TypeScript
15 lines
423 B
TypeScript
|
|
export interface CheckResult {
|
||
|
|
name: string;
|
||
|
|
status: "pass" | "warn" | "fail";
|
||
|
|
message: string;
|
||
|
|
canRepair?: boolean;
|
||
|
|
repair?: () => void | Promise<void>;
|
||
|
|
repairHint?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export { configCheck } from "./config-check.js";
|
||
|
|
export { databaseCheck } from "./database-check.js";
|
||
|
|
export { llmCheck } from "./llm-check.js";
|
||
|
|
export { logCheck } from "./log-check.js";
|
||
|
|
export { portCheck } from "./port-check.js";
|