aboutsummaryrefslogtreecommitdiff
path: root/src/proto.rs
blob: 029a58df1d2d4f38635bee83fe2eb383aac61150 (plain) (blame)
1
2
3
4
5
6
7
8
use serde::{Serialize, Deserialize};

#[derive(Debug, Serialize, Deserialize)]
pub enum Message {
	Ok,
	Error(String),

}