2024-10-03 20:53:30 +00:00
|
|
|
// pub struct Data {}
|
|
|
|
|
|
|
|
pub type Error = Box<dyn std::error::Error + Send + Sync>;
|
|
|
|
// replace () with Data if you ever need to store some additional data
|
2024-10-06 14:53:12 +00:00
|
|
|
pub type Context<'a> = poise::Context<'a, (), Error>;
|