From 52f20f5fa0e27e4687c868ec684a0af5a4fca62f Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Wed, 29 Apr 2020 13:37:50 +0200 Subject: make event submodule public The module contains some useful structs which were otherwise not exposed in the public API, so it's better to make it public. The re-export of Event and EventKind can stay, for convenience. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 82ecf7e..b99d6a7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ use thiserror::Error; pub mod raw; -mod event; +pub mod event; pub use event::{Event, EventKind}; pub mod gamedata; -- cgit v1.2.3