aboutsummaryrefslogtreecommitdiff
path: root/azalea/examples/echo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea/examples/echo.rs')
-rw-r--r--azalea/examples/echo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/examples/echo.rs b/azalea/examples/echo.rs
index 40ceb90a..a12b9618 100644
--- a/azalea/examples/echo.rs
+++ b/azalea/examples/echo.rs
@@ -16,7 +16,7 @@ async fn main() -> AppExit {
#[derive(Clone, Component, Default)]
pub struct State {}
-async fn handle(bot: Client, event: Event, _state: State) -> anyhow::Result<()> {
+async fn handle(bot: Client, event: Event, _state: State) -> eyre::Result<()> {
if let Event::Chat(m) = event
&& let (Some(sender), content) = m.split_sender_and_content()
{