summaryrefslogtreecommitdiffstats
path: root/service-person/src/model/country.rs
diff options
context:
space:
mode:
Diffstat (limited to 'service-person/src/model/country.rs')
-rw-r--r--service-person/src/model/country.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/service-person/src/model/country.rs b/service-person/src/model/country.rs
index 63c54d9..d094144 100644
--- a/service-person/src/model/country.rs
+++ b/service-person/src/model/country.rs
@@ -1,4 +1,3 @@
-use serde::Deserialize;
use anyhow::Error;
use anyhow::Result;
@@ -10,7 +9,7 @@ use diesel::Connection;
use crate::db::DbPool;
use crate::schema::countries;
-#[derive(Debug, Deserialize, diesel::Identifiable, diesel::Queryable, getset::Getters)]
+#[derive(Debug, diesel::Identifiable, diesel::Queryable, getset::Getters)]
#[table_name = "countries"]
pub struct Country {
pub(super) id: i32,