mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 20:10:21 +00:00
14 lines
178 B
JavaScript
14 lines
178 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Client
|
|
*/
|
|
module.exports = ({ client }) => {
|
|
switch (client) {
|
|
case 'sqlite-legacy':
|
|
return 'sqlite';
|
|
default:
|
|
return client;
|
|
}
|
|
};
|