📝 docs

This commit is contained in:
JMARyA 2025-04-30 10:02:04 +02:00
parent a567214f58
commit 164c71ddfe
9 changed files with 36 additions and 2 deletions

View file

@ -2,13 +2,18 @@ use crate::api;
use crate::generate_token;
use owl::prelude::*;
/// Joined Machine
#[model]
pub struct Machine {
/// Machine ID
pub id: Id,
/// Hostname
pub hostname: String,
/// Token
pub token: String,
pub identity: (String, String),
pub next_token: Option<String>,
/// Identity (Public Keys)
pub identity: (String, String),
}
impl Machine {