mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-28 23:23:30 +00:00
12 lines
416 B
TypeScript
12 lines
416 B
TypeScript
export * as ConfigCommand from "./command"
|
|
|
|
import { Schema } from "effect"
|
|
import { ConfigModel } from "./model"
|
|
|
|
export class Info extends Schema.Class<Info>("ConfigV2.Command")({
|
|
template: Schema.String,
|
|
description: Schema.String.pipe(Schema.optional),
|
|
agent: Schema.String.pipe(Schema.optional),
|
|
model: ConfigModel.Selection.pipe(Schema.optional),
|
|
subtask: Schema.Boolean.pipe(Schema.optional),
|
|
}) {}
|