mirror of
https://github.com/strapi/strapi.git
synced 2025-07-31 12:55:08 +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;
|
||
|
}
|
||
|
};
|