Skip to content

Commit 5852147

Browse files
Rename internal modules
1 parent f0fa59b commit 5852147

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

rust/catalyst-types/src/uuid/mod.rs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
//! `UUID` types.
22
3-
mod uuid_v4;
4-
mod uuid_v7;
3+
mod v4;
4+
mod v7;
55

66
use minicbor::data::Tag;
7-
#[allow(clippy::module_name_repetitions)]
8-
pub use uuid_v4::UuidV4;
9-
#[allow(clippy::module_name_repetitions)]
10-
pub use uuid_v7::UuidV7;
7+
pub use v4::UuidV4;
8+
pub use v7::UuidV7;
119

1210
/// Invalid Doc Type UUID
1311
pub const INVALID_UUID: uuid::Uuid = uuid::Uuid::from_bytes([0x00; 16]);
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)