typeshare-driver 1.2.1

macro for trivially creating your own typeshare binaries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# typeshare-driver

This crate contains a macro generating all the glue code necessary to create a typeshare binary. Supposing you had your own Python and Golang implementations
of typeshare, all you need to write is this:

```rust
use typeshare_driver::typeshare_binary;

use typeshare_golang::Golang;
use typeshare_python::Python;

typeshare_binary! { Python, Golang }
```

This creates an `fn main` that uses these languages, plus `typeshare-engine`, to implements a full typeshare CLI.