From 822d358ed7f2d80c5f7e714743924a0d828bd2b4 Mon Sep 17 00:00:00 2001 From: Jonathan Paprocki Date: Wed, 15 Jan 2025 11:38:25 -0500 Subject: [PATCH] add driver to lib.rs --- crown/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crown/src/lib.rs b/crown/src/lib.rs index 7332b936..fe97830c 100644 --- a/crown/src/lib.rs +++ b/crown/src/lib.rs @@ -30,6 +30,7 @@ pub use drivers::http::http as http_driver; pub use drivers::markdown::markdown as markdown_driver; pub use drivers::npc::{npc_client as npc_client_driver, npc_listener as npc_listener_driver}; pub use drivers::one_punch::one_punch_man as one_punch_driver; +pub use drivers::timer::make_timer_driver as timer_driver; use std::path::PathBuf;