Add loader station

This commit is contained in:
hal8174 2025-01-19 22:31:32 +01:00
parent b715c4ad06
commit 505ca6ff5c
12 changed files with 479 additions and 494 deletions

View file

@ -1,8 +1,5 @@
use base64::Engine;
use base64::engine::general_purpose::STANDARD;
use base64::prelude::BASE64_STANDARD;
use std::io::Cursor;
use std::io::Read;
use base64::{Engine, engine::general_purpose::STANDARD, prelude::BASE64_STANDARD};
use std::io::{Cursor, Read};
pub mod belt;
pub mod structs;

View file

@ -158,6 +158,8 @@ pub struct BlueprintEntity {
switch_state: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
tags: Option<serde_json::Value>,
#[serde(skip_serializing_if = "Option::is_none")]
quality: Option<String>,
}
#[derive(Serialize, Deserialize, Debug, Clone)]