Rename hook module to hooks

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2024-08-31 22:20:35 +02:00 committed by pep
commit 2f101c617c
4 changed files with 4 additions and 4 deletions

View file

@ -19,13 +19,13 @@
mod bot;
mod config;
mod error;
mod hook;
mod hooks;
mod web;
use crate::bot::XmppClient;
use crate::config::Config;
use crate::error::Error;
use crate::hook::Hook;
use crate::hooks::Hook;
use crate::web::hooks;
use std::sync::{Arc, Mutex};