lab-resource-manager 1.1.0

GPU and room resource management system with Google Calendar and Slack integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # IdentityLink集約
//!
//! メールアドレスとSlackユーザーの紐付け情報を管理する集約です。
//!
//! ## 集約ルート
//!
//! `IdentityLink`エンティティが集約ルートとして機能し、紐付け情報全体の整合性を保証します。

/// IdentityLink集約のエンティティ定義
pub mod entity;
/// IdentityLink集約のエラー型
pub mod errors;
/// IdentityLink集約の値オブジェクト
pub mod value_objects;

pub use entity::IdentityLink;
pub use errors::IdentityLinkError;