Add REST endpoint for slot
This commit is contained in:
parent
82e89baeeb
commit
8f378472ea
28 changed files with 1925 additions and 28 deletions
7
service/src/uuid_service.rs
Normal file
7
service/src/uuid_service.rs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
use mockall::automock;
|
||||
use uuid::Uuid;
|
||||
|
||||
#[automock]
|
||||
pub trait UuidService {
|
||||
fn new_uuid(&self, usage: &str) -> Uuid;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue