mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
export const dependencies = {};
|
|
const task = () => {
|
|
// the code logic of task extension should be defined in extension body
|
|
// and the return value of extension body is ignored
|
|
};
|
|
export default task;
|