From 6e36fc3707e791c3c748133d648957706b54fd3a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 16 Apr 2026 23:24:52 +0800 Subject: Add CLI commands for bill management and persistence --- src/who.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/who.rs') diff --git a/src/who.rs b/src/who.rs index 9d6e5b5..32f536b 100644 --- a/src/who.rs +++ b/src/who.rs @@ -1,4 +1,6 @@ -#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Default, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)] pub struct Who { name: String, } -- cgit