mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 20:22:02 +00:00
13 lines
268 B
Rust
13 lines
268 B
Rust
use serde_derive::Deserialize;
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
pub struct DocHeader {
|
|
pub title: String,
|
|
pub summary: String,
|
|
pub forks_timeline: String,
|
|
pub forks: Vec<String>,
|
|
pub config: String,
|
|
pub runner: String,
|
|
pub handler: String,
|
|
}
|