TypeScript/Deno runtime bridge — Go gRPC server + Deno sidecar. The seed project that inspired the entire Core framework. - Module: forge.lthn.ai/core/ts - Package: ts (renamed from coredeno) - gRPC bridge: CoreService (Go→Deno) + DenoService (Deno→Go) - Deno runtime: worker isolation, module loading, permissions - Proto descriptor retains original path (regenerate with protoc later) Co-Authored-By: Virgil <virgil@lethean.io>
5 lines
199 B
TypeScript
5 lines
199 B
TypeScript
// Test module — writes to store via I/O bridge to prove Workers work.
|
|
// Called by integration tests.
|
|
export async function init(core: any) {
|
|
await core.storeSet("test-module", "init", "ok");
|
|
}
|