Initial commit: NutriApp - Rust + Axum + Dioxus - CI/CD con Gitea Runner

This commit is contained in:
2026-06-24 08:35:09 +01:00
commit bede2018a6
35 changed files with 829 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
use serde::{Deserialize, Serialize};
use uuid::Uuid;
#[derive(Debug, Clone, Serialize, Deserialize, sqlx::FromRow)]
pub struct Usuario {
pub id: Uuid,
pub email: String,
pub nombre: String,
pub password_hash: String,
pub familia_id: Option<Uuid>,
pub created_at: chrono::NaiveDateTime,
}