Skip to content

Commit 1249484

Browse files
committed
chore: lintfix rename
1 parent c61f316 commit 1249484

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
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 as V4;
7-
pub use v7::UuidV7 as V7;
6+
pub use uuid_v4::UuidV4 as V4;
7+
pub use uuid_v7::UuidV7 as V7;
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.

rust/catalyst-types/tests/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
//!
33
//! This is mainly to demonstrate sample usage of the types.
44
5-
use catalyst_types;
6-
75
#[allow(dead_code)]
86
#[test]
97
fn test_type_usage() {

0 commit comments

Comments
 (0)