(id: string)
| 19 | } |
| 20 | |
| 21 | export async function getCodebase(id: string): Promise<Codebase | null> { |
| 22 | const result = await pool.query<Codebase>('SELECT * FROM remote_agent_codebases WHERE id = $1', [ |
| 23 | id, |
| 24 | ]); |
| 25 | return result.rows[0] || null; |
| 26 | } |
| 27 | |
| 28 | export async function updateCodebaseCommands( |
| 29 | id: string, |
nothing calls this directly
no outgoing calls
no test coverage detected