From 36fc318fe180d8b1a31b549ecb24161b7f10fbb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oddbj=C3=B8rn=20Gr=C3=B8dem?= <29732646+oddgrd@users.noreply.github.com> Date: Thu, 6 Jun 2024 19:21:27 +0200 Subject: [PATCH] misc: remove model used for external provisioner reqs (#1793) --- backends/src/resource.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/backends/src/resource.rs b/backends/src/resource.rs index ccc6124db..ae782cff5 100644 --- a/backends/src/resource.rs +++ b/backends/src/resource.rs @@ -7,10 +7,3 @@ pub struct ResourceRequest { /// The resource input returned from the runtime::load call. pub resources: Vec>, } - -/// Used to request the provisioning or deletion of a shared DB from the provisioner service. -#[derive(Deserialize, Serialize)] -pub struct SharedDbRequest { - pub db_name: String, - pub role_name: String, -}