Skip to content

Commit a40e5d2

Browse files
committed
chore: Update to current features
1 parent 0d23ab5 commit a40e5d2

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

example_server/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.densky/
22
deno.lock
3+
4+
example_server

example_server/src/routes/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { outFunction } from "../outFunction.ts";
22
const externalVar = "World";
33

44
export function GET() {
5-
return new Response("Hello " + externalVar + outFunction(1, 2));
5+
return new Response("Hello " + externalVar + outFunction(2, 2));
66
}
77

88
const completeText = "Hello " + externalVar;

0 commit comments

Comments
 (0)