mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-19 13:56:04 +00:00
added BaseIntrospector and reorganized connections
This commit is contained in:
12
app/src/data/connection/index.ts
Normal file
12
app/src/data/connection/index.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export { Connection } from "./Connection";
|
||||
export { BaseIntrospector } from "./BaseIntrospector";
|
||||
|
||||
// sqlite
|
||||
export { LibsqlConnection, type LibSqlCredentials } from "./sqlite/LibsqlConnection";
|
||||
export { SqliteConnection } from "./sqlite/SqliteConnection";
|
||||
export { SqliteLocalConnection } from "./sqlite/SqliteLocalConnection";
|
||||
export { SqliteIntrospector } from "./sqlite/SqliteIntrospector";
|
||||
|
||||
// postgres
|
||||
export { PostgresConnection, type PostgresConnectionConfig } from "./postgres/PostgresConnection";
|
||||
export { PostgresIntrospector } from "./postgres/PostgresIntrospector";
|
||||
Reference in New Issue
Block a user