mirror of
https://github.com/dbgate/dbgate
synced 2024-11-08 04:35:58 +00:00
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
|
|
/** @return {import('dbgate').EngineDriver} */
|
|
function getDriver(connection) {
|
|
const { engine } = connection;
|
|
return require(`./${engine}`);
|
|
}
|
|
module.exports = getDriver;
|