stub
This commit is contained in:
@@ -1,20 +1,20 @@
|
|||||||
#[derive(Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
pub struct Config {
|
pub struct Config {
|
||||||
streams: Streams,
|
streams: Streams,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
struct Streams {
|
struct Streams {
|
||||||
input: Stream,
|
input: Stream,
|
||||||
output: Stream,
|
output: Stream,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
struct Stream {
|
struct Stream {
|
||||||
engine: Engine,
|
engine: Engine,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
struct Engine {
|
struct Engine {
|
||||||
name: String,
|
name: String,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user