(name: string)
| 88 | } |
| 89 | |
| 90 | export async function getProjectPrompts(name: string): Promise<ProjectPrompts> { |
| 91 | return fetchJSON(`/projects/${encodeURIComponent(name)}/prompts`) |
| 92 | } |
| 93 | |
| 94 | export async function updateProjectPrompts( |
| 95 | name: string, |
nothing calls this directly
no test coverage detected