| 24 | } |
| 25 | |
| 26 | export interface DataSource { |
| 27 | id: string; |
| 28 | type: DatabaseType; |
| 29 | host?: string; |
| 30 | port?: number; |
| 31 | database?: string; |
| 32 | user?: string; |
| 33 | is_default: boolean; |
| 34 | ssh_tunnel?: SSHTunnel; |
| 35 | tools: Tool[]; |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected