Skip to content

Commit

Permalink
Rename workflow::handlers the workflow::script module
Browse files Browse the repository at this point in the history
The script definition has been moved to the tedge_api::script module
And the former workflow::script module contains now only workflow
handlers.

Signed-off-by: Didier Wenzek <[email protected]>
  • Loading branch information
didier-wenzek committed Oct 25, 2024
1 parent 9304a6b commit 1540aad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core/tedge_api/src/workflow/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub mod error;
pub mod handlers;
pub(crate) mod log;
mod on_disk;
pub mod script;
pub mod state;
pub mod supervisor;
mod toml_config;
Expand All @@ -12,9 +12,9 @@ use crate::mqtt_topics::OperationType;
use crate::script::ShellScript;
use ::log::info;
pub use error::*;
pub use handlers::*;
use mqtt_channel::MqttMessage;
use mqtt_channel::QoS;
pub use script::*;
use serde::Deserialize;
use serde_json::json;
pub use state::*;
Expand Down

0 comments on commit 1540aad

Please sign in to comment.