12 lines
226 B
Rust
12 lines
226 B
Rust
//! Discord bot providing a subscription system to topics.
|
|
//! Powered by [`Serenity`]
|
|
//!
|
|
//! [`Serenity`]: https://github.com/serenity-rs/serenity
|
|
|
|
#![deny(missing_docs)]
|
|
#![deny(warnings)]
|
|
|
|
pub mod client;
|
|
|
|
pub mod errors;
|