maybe make imports better fuck idunno

This commit is contained in:
bel
2020-05-02 14:51:53 -06:00
parent 2844fd11e5
commit 340873205b
8 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
#[derive(Clone, Debug)]
pub struct Event {
pub sender: String,
pub body: String,
pub next: String,
}
#[cfg(test)]
mod tests {
#[test]
fn event() {
let e = super::Event{
sender: "sender".to_string(),
body: "body".to_string(),
next: "next".to_string(),
};
println!("{:?}", e);
}
}