chore: Format for readability

This commit is contained in:
Richard Michael
2025-06-26 16:34:56 -07:00
parent 0d1653fff3
commit 114ad51b54

View File

@@ -46,7 +46,10 @@ const LongRunningOperationSchema = z.object({
.number()
.default(10)
.describe("Duration of the operation in seconds"),
steps: z.number().default(5).describe("Number of steps in the operation"),
steps: z
.number()
.default(5)
.describe("Number of steps in the operation"),
});
const PrintEnvSchema = z.object({});