Skip to content

Commit 9603fcd

Browse files
committed
fix: regenerate
1 parent aedad74 commit 9603fcd

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

biome.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"files": {
1212
"ignore": [
1313
"integration-tests/**/generated/*",
14+
"integration-tests/typescript-nextjs/src/app/**/*",
1415
"integration-tests-definitions/**/*",
1516
"e2e/src/generated/**/*",
1617
"schemas/*.json",
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
import {_GET, _POST} from "../../../generated/todo-lists.yaml/attachments/route"
1+
import {
2+
_GET,
3+
_POST,
4+
} from "../../../generated/todo-lists.yaml/attachments/route"
25

36
export const GET = _GET(async ({}, respond, context) => {
47
// TODO: implementation
5-
return respond.withStatus(501).body({message: "not implemented"} as any)
8+
return respond.withStatus(501).body({ message: "not implemented" } as any)
69
})
7-
export const POST = _POST(async ({body}, respond, context) => {
10+
export const POST = _POST(async ({ body }, respond, context) => {
811
// TODO: implementation
9-
return respond.withStatus(501).body({message: "not implemented"} as any)
12+
return respond.withStatus(501).body({ message: "not implemented" } as any)
1013
})

0 commit comments

Comments
 (0)