Nebula/database_assets/com.nebula.test-2/index.js
2024-10-27 03:48:48 -06:00

12 lines
274 B
JavaScript

const example = () => {console.log('Gyatt... 2')};
function gyatt2() {
return {
function: example,
name: 'gyatt2',
events: ['fetch']
};
}
//We need to return the refrence to the function and NOT the function itself
self.entryFunc = gyatt2;