From 9fe132fcac3be0238e6d175c8c736b5ae62b2798 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Wed, 15 Sep 2021 11:10:04 -0600 Subject: [PATCH] todo for actions --- appmgr/src/action/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appmgr/src/action/mod.rs b/appmgr/src/action/mod.rs index e2c5359e3..52ae1b82d 100644 --- a/appmgr/src/action/mod.rs +++ b/appmgr/src/action/mod.rs @@ -16,6 +16,8 @@ use crate::{Error, ResultExt}; pub mod docker; +// TODO: create RPC endpoint that looks up the appropriate action and calls `execute` + #[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize)] pub struct ActionId = String>(Id); impl> AsRef> for ActionId { @@ -160,7 +162,7 @@ impl ActionImplementation { pub struct NoOutput; impl<'de> Deserialize<'de> for NoOutput { - fn deserialize(deserializer: D) -> Result + fn deserialize(_: D) -> Result where D: serde::Deserializer<'de>, {