emmett 0.1.3-alpha

a simple etl tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Specification:

/// Read events from github webhooks.
pub struct Github {
    /// If Secret is defined, we drop the events that don’t match. Otherwise, we’ll just add an invalid tag.
    pub drop_invalid: Option<bool>,

    /// The ip to listen on.
    pub ip: Option<String>,

    /// The port to listen on.
    pub port: Option<u64>,

    /// Your GitHub Secret Token for the webhook.
    pub secret_token: Option<String>,
}