5 lines
147 B
Rust
5 lines
147 B
Rust
|
use derive_more::{Constructor, Deref, Display};
|
||
|
|
||
|
#[derive(Clone, Debug, PartialEq, Eq, Constructor, Deref, Display)]
|
||
|
pub struct WebhookId(String);
|