Add plumbing for hosted projects. This will currently show them if they exist but provides no UX to create/rename/delete them. Also changed the `ChannelId` type to not auto-cast to u64; this avoids type confusion if you have multiple id types. Release Notes: - N/A
16 lines
264 B
Rust
16 lines
264 B
Rust
use super::*;
|
|
|
|
pub mod access_tokens;
|
|
pub mod buffers;
|
|
pub mod channels;
|
|
pub mod contacts;
|
|
pub mod contributors;
|
|
pub mod extensions;
|
|
pub mod hosted_projects;
|
|
pub mod messages;
|
|
pub mod notifications;
|
|
pub mod projects;
|
|
pub mod rooms;
|
|
pub mod servers;
|
|
pub mod users;
|