1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Drawing Domain
//!
//! This file was generated by: `sarzak new "drawing"`.
use uuid::{uuid, Uuid};

#[macro_use]
pub mod macros;
pub mod store;
pub mod types;

pub use store::ObjectStore;
pub use types::*;

// drawing
pub const UUID_NS: Uuid = uuid!("0d035b17-076b-5848-b20f-ee05ce7738a9");