Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/canxin121/onebot_v11_oxidebot
https://github.com/canxin121/onebot_v11_oxidebot
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/canxin121/onebot_v11_oxidebot
- Owner: canxin121
- Created: 2024-08-16T07:39:53.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-09-09T16:58:33.000Z (4 months ago)
- Last Synced: 2024-09-10T16:19:55.103Z (4 months ago)
- Language: Rust
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# OnebotV11 + Napcat/llonebot extension Bot for oxidebot
# Usage
```
cargo add onebot_v11_oxidebot
```ReverseWsBot Example
```rust
#[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;
}
```