UNPKG

ignite-boilerplate-andross-typescript

Version:
22 lines (18 loc) 409 B
const screenExamples = require('./screenExamples') /** * Add the plugin. * * @param {any} context - The gluegun context. */ async function add (context) { await screenExamples.add(context) } /** * Remove the plugin. * * @param {any} context - The gluegun context. */ async function remove (context) { await screenExamples.remove(context) } module.exports = { add, remove }