src: move module/mod.rs files to module.rs

This commit is contained in:
Antoine Martin 2021-09-12 17:44:37 +02:00
parent 93e87e0207
commit 0837b07a9e
3 changed files with 0 additions and 0 deletions

11
src/webhooks.rs Normal file
View file

@ -0,0 +1,11 @@
use std::sync::{mpsc::SyncSender};
mod github;
pub use github::{github_webhook, GitHubEvent};
pub struct EventSender(pub SyncSender<Event>);
#[derive(Debug)]
pub enum Event {
GitHub(GitHubEvent),
}