qa-inspect-host 0.1.8

Host a Blitz document and serve it over the inspection socket
1
2
3
4
5
6
7
8
//! Serve one Blitz document over the inspection socket, with no window.

fn main() {
    if let Err(error) = qa_inspect_host::serve() {
        eprintln!("qa-inspect-host: {error}");
        std::process::exit(1);
    }
}