Enabled back-end running of functions, moved indexing to server.

This commit is contained in:
Zef Hemel
2022-03-18 14:59:04 +01:00
parent 97b9d3a3e0
commit 8bff6d98e1
27 changed files with 538 additions and 367 deletions
+3
View File
@@ -75,6 +75,9 @@
},
"toggle_h2": {
"path": "./markup.ts:toggleH2"
},
"server_test": {
"path": "./server.ts:test"
}
}
}
+5
View File
@@ -0,0 +1,5 @@
import { syscall } from "./lib/syscall";
export function test() {
console.log("I'm running on the server!");
return 5;
}