Add loader station
This commit is contained in:
parent
b715c4ad06
commit
505ca6ff5c
12 changed files with 479 additions and 494 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue