aboutsummaryrefslogtreecommitdiff
path: root/tools/src/main.rs
blob: 0167e3c15654f8f3fddd378a39bbb809ec7053a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Parser;
use laby::{html, Render};

#[derive(Parser)]
struct Args {
    input: String,
    output: String,
}

fn main() {
    let args = Args::parse();
    
}

fn scaffold(title: String, body: impl Render) -> impl Render {
    html!(head!(title!(title)), body!())
}