summaryrefslogtreecommitdiffstats
path: root/plugins/plugin_lua/src/config.rs
blob: 46eac9533e6b9216e93dcd2383790430994dce26 (plain)
1
2
3
4
5
6
7
use std::path::PathBuf;

#[derive(Debug, serde::Deserialize, tedge_api::Config)]
pub struct Config {
    /// The path to the script to execute
    pub(crate) script: PathBuf,
}