feat: with monitoring

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-27 00:07:56 +02:00
parent 569f5272e6
commit e0545c726c
8 changed files with 145 additions and 11 deletions

View File

@@ -14,4 +14,5 @@ clap.workspace = true
dotenv.workspace = true
axum.workspace = true
reqwest.workspace = true
serde.workspace = true
serde.workspace = true
uuid.workspace = true

View File

@@ -20,6 +20,6 @@ pub struct ServerEnrollReq {
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ServerMonitorResp {
pub cursor: String,
pub cursor: Option<uuid::Uuid>,
pub logs: Vec<String>,
}