"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InitCommandSchema = void 0;
const zod_1 = require("zod");
exports.InitCommandSchema = zod_1.z.object({
template: zod_1.z.string().min(1).optional(),
list: zod_1.z.boolean().optional(),
});