getting things going

This commit is contained in:
metacryst
2026-01-29 08:20:27 -06:00
parent c09b08a474
commit 6d50337e3b
9 changed files with 377 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import fs from "fs"
import { createBridge } from "./bridge.js"
const handlers = {
getProfile(one, two) {
fs.writeFileSync("output.txt", `${one} ${two}`)
return "written to disk"
},
}
export const { getProfile } = createBridge(handlers)