diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-09-20 23:01:18 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-09-20 23:05:44 -0400 |
| commit | 0a05491930fb34ce7c93c33ea0b7599360483fc7 (patch) | |
| tree | 552906477fd81c6687c0ca9c6bdc25e22461b52a /src/events/mod.rs | |
| parent | 22348bfa35f009e62abe2f30863e0434079a1fe2 (diff) | |
Push events into a module structure consistent with the rest of the project.
Diffstat (limited to 'src/events/mod.rs')
| -rw-r--r-- | src/events/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/events/mod.rs b/src/events/mod.rs new file mode 100644 index 0000000..f67ea04 --- /dev/null +++ b/src/events/mod.rs @@ -0,0 +1,5 @@ +pub mod app; +pub mod repo; +mod routes; + +pub use self::routes::router; |
