Claude WIP

This commit is contained in:
Louis Knight-Webb
2025-06-16 20:06:15 -04:00
parent a0378da1e3
commit 18db6be0f2
5 changed files with 90 additions and 10 deletions

View File

@@ -3,7 +3,7 @@
export type ApiResponse<T> = { success: boolean, data: T | null, message: string | null, };
export type ExecutorConfig = { "type": "echo" };
export type ExecutorConfig = { "type": "echo" } | { "type": "claude" };
export type CreateProject = { name: string, git_repo_path: string, use_existing_repo: boolean, };