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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};

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

#[derive(Debug, Deserialize, Serialize)]
pub struct Response {
    /// The date and time that the function was last updated
    /// in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
    pub last_modified: Option<String>,
}