Merge pull request #25 from polyphony-chat/feature/sending-messages

Bring main up to date
This commit is contained in:
Flori 2023-05-02 22:51:49 +02:00 committed by GitHub
commit dc57ef7fc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1 @@
pub mod messages {}

3
src/api/channels/mod.rs Normal file
View File

@ -0,0 +1,3 @@
pub mod messages;
pub use messages::*;

View File

@ -1,8 +1,10 @@
pub mod auth; pub mod auth;
pub mod channels;
pub mod policies; pub mod policies;
pub mod schemas; pub mod schemas;
pub mod types; pub mod types;
pub use channels::messages::*;
pub use policies::instance::instance::*; pub use policies::instance::instance::*;
pub use policies::instance::limits::*; pub use policies::instance::limits::*;
pub use schemas::*; pub use schemas::*;