Files
uTab/src/worker/Endpoints.ts
T
2025-04-18 09:52:27 -04:00

6 lines
212 B
TypeScript

export const ExposedEndpoints = {
writeFile: (message: { path: string, fileContent: string }) => {
console.log("writing", message.fileContent, "to", message.path)
return "OK"
}
} as const;