resuma 1.0.1

Resuma — resumable SSR Rust web framework: zero hydration, islands, server actions, Flow (Axum).
1
2
3
4
5
6
7
8
//! Serialization helpers shared by the various server endpoints.

use serde::Serialize;

#[derive(Serialize)]
pub struct ErrorPayload<'a> {
    pub error: &'a str,
}