shifty-backend/service/src/uuid_service.rs
2024-05-02 23:25:04 +02:00

7 lines
123 B
Rust

use mockall::automock;
use uuid::Uuid;
#[automock]
pub trait UuidService {
fn new_uuid(&self, usage: &str) -> Uuid;
}