ataraxy 0.1.1

Discord slash commands framework for Serenity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A Discord slash command framework for Serenity
//! # Usage
//! ```rust
//!
//! ```

pub mod framework;
mod numbers;

pub use ataraxy_macros::command;
pub use framework::Command;
pub use framework::CommandGroup;
pub use framework::Context;
pub use framework::Framework;
pub use framework::SubCommands;