Files: 0f4618d69a1944599b2e15d8398df11ca4901eaa / defaultAgent.js
238 bytesRaw
1 | exports.run = async (message, kernel) => { |
2 | const to = message.to[message.hops - 1] |
3 | if (to) { |
4 | return kernel.send(message) |
5 | } else if (message.data.getValue) { |
6 | return (await kernel.state.get(message.data.getValue)).value |
7 | } |
8 | } |
9 |
Built with git-ssb-web