spin-sdk 3.1.0

The Spin Rust SDK makes it easy to build Spin components in Rust.
Documentation
1
2
3
4
5
6
interface inbound-redis {
  use redis-types.{payload, error};

  // The entrypoint for a Redis handler.
  handle-message: func(message: payload) -> result<_, error>;
}