feat: init
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
use uuid::Uuid;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct ImSession {
|
||||
pub user: Uuid,
|
||||
}
|
||||
|
||||
impl ImSession {
|
||||
pub fn new(user: Uuid) -> Self {
|
||||
Self { user }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user