split-async 0.1.1

A procedural macro to generate sync and async versions of a function
Documentation
use split_async::split;

#[split(a)]
async fn func() {}

#[split("b")]
async fn func() {}

#[split(c, d)]
async fn func() {}

#[split(e, "f")]
async fn func() {}

#[split("g", h)]
async fn func() {}

#[split(i, j)]
async fn func() {}