Go back to own version of markdown

This commit is contained in:
Zef Hemel
2022-09-14 08:48:14 +02:00
parent c80342417c
commit 2d51b2d4c2
7 changed files with 19 additions and 8 deletions
+4
View File
@@ -1,5 +1,6 @@
import { SysCallMapping } from "@plugos/plugos/system";
import type { ExpressServer } from "../express_server";
import { version } from "../package.json";
export function systemSyscalls(expressServer: ExpressServer): SysCallMapping {
return {
@@ -17,5 +18,8 @@ export function systemSyscalls(expressServer: ExpressServer): SysCallMapping {
"system.reloadPlugs": async () => {
return expressServer.reloadPlugs();
},
"system.getVersion": async () => {
return version;
},
};
}