kinetics 0.15.1

Kinetics is a hosting platform for Rust applications that allows you to deploy all types of workloads by writing **only Rust code**.
Documentation
use crate::credentials::Credentials;
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use std::path::PathBuf;

#[derive(Debug, Deserialize, Serialize)]
pub struct Request {
    pub email: String,
    pub code: String,
}

#[derive(Debug, Deserialize, Serialize)]
pub struct Response {
    pub email: String,
    pub token: String,
    pub expires_at: DateTime<Utc>,
}

impl TryFrom<Response> for Credentials {
    type Error = eyre::Report;

    fn try_from(value: Response) -> eyre::Result<Self> {
        Ok(Self {
            path: PathBuf::new(),
            email: value.email,
            token: value.token,
            expires_at: value.expires_at,
        })
    }
}