Remove unused Variable type

This commit is contained in:
Gregory Schier
2023-10-28 11:31:45 -07:00
parent 1a5053380b
commit 7e45fecf19

View File

@@ -39,20 +39,6 @@ pub struct EnvironmentVariable {
pub value: String,
}
#[derive(sqlx::FromRow, Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Variable {
pub id: String,
pub workspace_id: String,
pub environment_id: String,
pub model: String,
pub created_at: NaiveDateTime,
pub updated_at: NaiveDateTime,
pub name: String,
pub value: String,
pub sort_priority: f64,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct HttpRequestHeader {