cargo-reef 0.2.3

CLI scaffolder + tooling for Reef apps. `cargo reef new my-app` to scaffold; `cargo reef dev` to run; `cargo reef migrate` for DB migrations.
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared wire types — referenced by both the WASM client and the native
//! server. Keep this minimal: pure data, derives, no logic, no framework
//! deps beyond serde.

use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct Status {
    pub message: String,
    pub version: String,
    pub greeting: Option<String>,
}