This commit is contained in:
Your Name
2025-04-18 09:52:27 -04:00
parent f569bb2240
commit 066bb11814
54 changed files with 1714 additions and 469 deletions
+6
View File
@@ -0,0 +1,6 @@
export const ExposedEndpoints = {
writeFile: (message: { path: string, fileContent: string }) => {
console.log("writing", message.fileContent, "to", message.path)
return "OK"
}
} as const;