Separated the code

This commit is contained in:
phoenix
2025-03-31 19:16:15 -04:00
parent dda88ce0a0
commit 9b77a8dd78
7 changed files with 57 additions and 26 deletions
+11
View File
@@ -0,0 +1,11 @@
use serde::{Deserialize, Serialize};
#[derive(Deserialize)]
pub struct CreateUser {
pub username: String,
}
#[derive(Serialize)]
pub struct User {
pub username: String,
}
+1
View File
@@ -0,0 +1 @@
pub mod common;