设计tracer

This commit is contained in:
2025-10-29 23:54:36 +08:00
parent f0812167c0
commit 5064567457

View File

@@ -0,0 +1,7 @@
import type { TracerAction } from "./action-type";
export type Command = {
tracer: string;
action: TracerAction;
params: any;
}