mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-17 05:20:01 -04:00
12 lines
274 B
JavaScript
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;
|