diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-03-05 16:48:48 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-03-05 16:48:48 -0500 |
commit | 18290b45af404af505936cd850762057a5a4eea0 (patch) | |
tree | 429ade36310e9e7367ef7377138353673a34b3a5 /src/models | |
parent | 0c63ae51d1221b8ecd9742c7d5580bd06551ecbb (diff) | |
download | twinh-18290b45af404af505936cd850762057a5a4eea0.tar.xz twinh-18290b45af404af505936cd850762057a5a4eea0.zip |
broke out handlers, added basic models
Diffstat (limited to 'src/models')
-rw-r--r-- | src/models/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/mod.rs b/src/models/mod.rs index d7ff47a..1a4d1df 100644 --- a/src/models/mod.rs +++ b/src/models/mod.rs @@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize}; #[derive(Serialize, Deserialize)] pub struct Car { - year: u16, // Yes, in 30767 years I will address this. + year: u16, // I'll worry about this in 65534 AD. make: String, model: String, engine: Engine, |