Skip to content

Commit bdd9ad3

Browse files
committed
chore: rename module fixing lint
1 parent 4971048 commit bdd9ad3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

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

6-
pub use v4::UuidV4;
7-
pub use v7::UuidV7;
6+
pub use uuid_v4::UuidV4;
7+
pub use uuid_v7::UuidV7;
88

99
/// Invalid Doc Type UUID
1010
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)