Files
oh-my-opencode/src/shared/task-system-enabled.ts
T

10 lines
214 B
TypeScript
Raw Normal View History

2026-04-03 17:07:30 +09:00
export interface TaskSystemConfig {
experimental?: {
task_system?: boolean
}
}
export function isTaskSystemEnabled(config: TaskSystemConfig): boolean {
return config.experimental?.task_system ?? false
}