mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
17 lines
197 B
Rust
17 lines
197 B
Rust
#[macro_use]
|
|
extern crate auto_ops;
|
|
|
|
#[macro_use]
|
|
extern crate async_trait;
|
|
|
|
mod r#impl;
|
|
mod models;
|
|
mod r#trait;
|
|
|
|
pub use models::*;
|
|
pub use r#impl::*;
|
|
pub use r#trait::*;
|
|
|
|
#[cfg(test)]
|
|
mod test;
|