Replace TestDoc with Doc

This commit is contained in:
Paul Hauner
2019-05-15 11:15:34 +10:00
parent b7a8613444
commit 2b8e8ce59e
8 changed files with 22 additions and 23 deletions

View File

@@ -0,0 +1,12 @@
use super::*;
#[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,
}