mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
9 lines
143 B
JavaScript
9 lines
143 B
JavaScript
|
function ValidVerdaccioPlugin() {
|
||
|
return {
|
||
|
// not valid method
|
||
|
authenticate__: function(){}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = ValidVerdaccioPlugin;
|