13 lines
269 B
Plaintext
13 lines
269 B
Plaintext
//async is optional but recomended for optimisation (optimisations are yet to be implemented)
|
|
async function init() {
|
|
//code to execute
|
|
}
|
|
|
|
const after = [] // list of init script to load before
|
|
const before = []
|
|
|
|
module.exports = {
|
|
init,
|
|
after,
|
|
before
|
|
} |