14 lines
357 B
Rust
14 lines
357 B
Rust
// Test fixtures data module
|
|
// Placeholder for test data
|
|
|
|
pub fn sample_bot_id() -> uuid::Uuid {
|
|
uuid::uuid!("00000000-0000-0000-0000-000000000001")
|
|
}
|
|
|
|
pub fn sample_user_id() -> uuid::Uuid {
|
|
uuid::uuid!("00000000-0000-0000-0000-000000000002")
|
|
}
|
|
|
|
pub fn sample_session_id() -> uuid::Uuid {
|
|
uuid::uuid!("00000000-0000-0000-0000-000000000003")
|
|
}
|