Add REST endpoint for slot

This commit is contained in:
Simon Goller 2024-05-02 23:25:04 +02:00
parent 82e89baeeb
commit 8f378472ea
28 changed files with 1925 additions and 28 deletions

View file

@ -0,0 +1,9 @@
use uuid::Uuid;
pub struct UuidServiceImpl;
impl service::uuid_service::UuidService for UuidServiceImpl {
fn new_uuid(&self, _usage: &str) -> Uuid {
Uuid::new_v4()
}
}