12 lines
225 B
Rust
12 lines
225 B
Rust
|
//! Action to take on hook exit.
|
||
|
|
||
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
/// Action to take on hook exit.
|
||
|
#[derive(Debug, Deserialize, Serialize)]
|
||
|
#[serde(rename_all = "lowercase")]
|
||
|
pub enum ExitAction {
|
||
|
Continue,
|
||
|
Stop,
|
||
|
}
|