Prim+ RPC
export const sayHello = (x, y) => `${x}, meet ${y}.` sayHello.rpc = true
const hello = await sayHello("Backend", "Frontend") console.log(hello)
Backend,meet Frontend.