first commit

This commit is contained in:
John Yeo
2025-01-21 11:18:42 +00:00
commit 479b6d7afb
283 changed files with 42601 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
export enum DBConnectionProvider {
Postgres = "postgres",
}
export interface DBConnection {
id: string;
org_id: string;
provider: DBConnectionProvider;
display_name: string;
connection_string: string;
created_at: number;
}