diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-09-04 12:13:54 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-09-04 12:13:54 -0400 |
| commit | cae21da31ff795cc21ec19288fcdc5fdb8a713c7 (patch) | |
| tree | c3ae1f5fdfc6ebd703a9387b1108671c003b7eaa /src/channel/mod.rs | |
| parent | 2c999920d8f6f0b320960b01721e1f29f4078755 (diff) | |
Allow any login to create channels.
Diffstat (limited to 'src/channel/mod.rs')
| -rw-r--r-- | src/channel/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/channel/mod.rs b/src/channel/mod.rs new file mode 100644 index 0000000..238e116 --- /dev/null +++ b/src/channel/mod.rs @@ -0,0 +1,4 @@ +pub mod repo; +mod routes; + +pub use self::routes::router; |
