V0.3.0 #21

Merged
phoenix merged 20 commits from v0.3.0-migrate into main 2026-06-07 14:54:19 -04:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit e965cdeed9 - 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;
+8
View File
@@ -0,0 +1,8 @@
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,
}