Adding message module #12

Merged
phoenix merged 2 commits from message into v0.3.0-migrate 2026-05-30 15:15:15 -04:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit d5fde35651 - Show all commits
+1
View File
@@ -1,4 +1,5 @@
pub mod config;
pub mod contact;
pub mod message;
pub mod token;
pub mod user;
+9
View File
@@ -0,0 +1,9 @@
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct Message {
pub id: uuid::Uuid,
pub content: String,
pub user_id: uuid::Uuid,
}