onebot_v11_oxidebot 0.1.4

OnebotV11 Bot for oxidebot framework
docs.rs failed to build onebot_v11_oxidebot-0.1.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: onebot_v11_oxidebot-0.1.3

OnebotV11 + Napcat/llonebot extension Bot for oxidebot

Usage

cargo add onebot_v11_oxidebot

ReverseWsBot Example

#[tokio::main]
async fn main() {
    tracing_subscriber::fmt::init();
    let manager = oxidebot::OxideBotManager::new()
        .bot(onebot_v11_oxidebot::OnebotV11ReverseWsBot::new(Default::default()).await)
        .await;
    manager.run_block().await;
}