Aplicando orden por modulos

Ignorar .env
This commit is contained in:
Juan Pablo Vial
2022-07-01 12:08:08 -04:00
parent 2e8f24386f
commit 827566b4f2
13 changed files with 200 additions and 0 deletions

7
code/src/model/city.rs Normal file
View File

@ -0,0 +1,7 @@
use serde::{Serialize, Deserialize};
#[derive(Debug, Serialize, Deserialize)]
pub struct City {
pub name : String,
pub code: String
}