We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb7012 commit c3778a2Copy full SHA for c3778a2
‎references/hello-world/src/trigger/example.ts
@@ -138,3 +138,10 @@ export const batchTask = task({
138
};
139
},
140
});
141
+
142
+const nonExportedTask = task({
143
+ id: "non-exported",
144
+ run: async (payload: { message: string }, { ctx }) => {
145
+ logger.info("Hello, world from the non-exported task", { message: payload.message });
146
+ },
147
+});
0 commit comments