From 3c7edb1f9ed4ef1fe9a76e37c92878a134f538b5 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 30 Mar 2022 16:16:54 +0200 Subject: [PATCH] events: Rename internal module event_kinds => kinds --- crates/ruma-common/src/events.rs | 4 ++-- crates/ruma-common/src/events/{event_kinds.rs => kinds.rs} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename crates/ruma-common/src/events/{event_kinds.rs => kinds.rs} (100%) diff --git a/crates/ruma-common/src/events.rs b/crates/ruma-common/src/events.rs index 805880ad..f29253a3 100644 --- a/crates/ruma-common/src/events.rs +++ b/crates/ruma-common/src/events.rs @@ -136,7 +136,7 @@ use crate::{EventEncryptionAlgorithm, RoomVersionId}; pub mod _custom; mod content; mod enums; -mod event_kinds; +mod kinds; mod unsigned; /// Re-export of all the derives needed to create your own event types. @@ -193,7 +193,7 @@ pub use self::relation::Relations; pub use self::{ content::*, enums::*, - event_kinds::*, + kinds::*, unsigned::{MessageLikeUnsigned, RedactedUnsigned, StateUnsigned}, }; diff --git a/crates/ruma-common/src/events/event_kinds.rs b/crates/ruma-common/src/events/kinds.rs similarity index 100% rename from crates/ruma-common/src/events/event_kinds.rs rename to crates/ruma-common/src/events/kinds.rs