config: Drop redundant "remote_" prefix

This commit is contained in:
2021-11-18 11:36:03 +01:00
parent a4f2dee4f5
commit 1843ddc840

View File

@@ -17,7 +17,7 @@ pub enum RemoteType {
pub struct Remote {
pub name: String,
pub url: String,
#[serde(alias = "type")]
#[serde(rename = "type")]
pub remote_type: RemoteType,
}