git_next_core/config/webhook/
id.rs

1//
2use crate::newtype;
3
4newtype!(
5    WebhookId,
6    String,
7    derive_more::Display,
8    "The ID of the webhook, as returned by the forge when it is registered."
9);