- CLI binary: bin/gniza -> bin/gniza4cp - Install path: /usr/local/gniza4cp/ - Config path: /etc/gniza4cp/ - Log path: /var/log/gniza4cp/ - WHM plugin: gniza4cp-whm/ - cPanel plugin: cpanel/gniza4cp/ - AdminBin: Gniza4cp::Restore - Perl modules: Gniza4cpWHM::*, Gniza4cpCPanel::* - DaisyUI theme: gniza4cp - All internal references, branding, paths updated - Git remote updated to gniza4cp repo
12 lines
344 B
JavaScript
12 lines
344 B
JavaScript
export const plugin = {
|
|
withOptions: (pluginFunction, configFunction = () => ({})) => {
|
|
const optionsFunction = (options) => {
|
|
const handler = pluginFunction(options)
|
|
const config = configFunction(options)
|
|
return { handler, config }
|
|
}
|
|
optionsFunction.__isOptionsFunction = true
|
|
return optionsFunction
|
|
},
|
|
}
|