flecks/packages/server/build/dox/hooks.js

13 lines
242 B
JavaScript
Raw Normal View History

2022-03-07 00:21:16 -06:00
import {Hooks} from '@flecks/core';
export default {
[Hooks]: {
/**
* Define sequential actions to run when the server comes up.
*/
2022-03-08 16:03:06 -06:00
'@flecks/server.up': async () => {
2022-03-07 00:21:16 -06:00
await youCanDoAsyncThingsHere();
},
},
};