Add amp support

This commit is contained in:
Louis Knight-Webb
2025-06-18 00:17:06 -04:00
parent 3ad567cd1c
commit 635ef346df
8 changed files with 99 additions and 22 deletions

View File

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