mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 17:50:17 +00:00
10 lines
258 B
Rust
10 lines
258 B
Rust
|
|
use serde::{Deserialize, Serialize};
|
||
|
|
|
||
|
|
/// The configuration of the print action.
|
||
|
|
#[derive(Serialize, Deserialize, Debug, Default, Clone)]
|
||
|
|
pub struct PrintConfiguration {
|
||
|
|
/// The text to print to the console.
|
||
|
|
#[serde(default)]
|
||
|
|
pub text: String,
|
||
|
|
}
|