Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
//! A standalone binary for `proc-macro-srv`.

use proc_macro_srv::cli;

fn main() -> std::io::Result<()> {
    cli::run()
}