Skip to content

Commit e1181de

Browse files
committed
Moved the nestjs-example to the reference folder
1 parent ce023f4 commit e1181de

File tree

15 files changed

+1277
-94
lines changed

15 files changed

+1277
-94
lines changed

pnpm-lock.yaml

Lines changed: 1275 additions & 92 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

examples/nestjs-example/src/app.controller.ts renamed to references/nestjs-example/src/app.controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class AppController {
1414
trigger: eventTrigger({
1515
name: 'test.event',
1616
}),
17-
run: async (payload, io, ctx) => {
17+
run: async (payload, io) => {
1818
await io.logger.info('Hello world!', { payload });
1919

2020
return {
@@ -26,6 +26,6 @@ export class AppController {
2626

2727
@Get()
2828
getHello(): string {
29-
return `Running Trigger.dev with client-id ${ this.client.id }`;
29+
return `Running Trigger.dev with client-id ${this.client.id}`;
3030
}
3131
}
File renamed without changes.

0 commit comments

Comments
 (0)