mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-08-20 11:19:50 +08:00
12 lines
205 B
JavaScript
12 lines
205 B
JavaScript
|
|
export default (api) => {
|
|
api.describe({
|
|
key: 'plugins',
|
|
config: {
|
|
schema(joi) {
|
|
return joi.array().items(joi.string());
|
|
}
|
|
}
|
|
});
|
|
};
|