diff --git a/README.md b/README.md index 6f8355a..7792ce2 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A OneBot V11 bot plugin framework developed in Rust. -More documentation can be found in the [Kovi Doc](https://www.threkork.me/kovi-doc/). +More documentation can be found in the [Kovi Doc](https://threkork.github.io/kovi-doc/). The project is currently in beta. @@ -167,4 +167,4 @@ The closure passed to `plugin.on_msg()` runs every time a message is received. Kovi has encapsulated all available OneBot standard APIs. To extend the API, you can use `RuntimeBot`'s `send_api()` to send APIs yourself. -More documentation can be found in the [Kovi Doc](https://www.threkork.me/kovi-doc/). +More documentation can be found in the [Kovi Doc](https://threkork.github.io/kovi-doc/). diff --git a/README_Cargo.md b/README_Cargo.md index 744e77c..bc029fd 100644 --- a/README_Cargo.md +++ b/README_Cargo.md @@ -4,7 +4,7 @@ A OneBot V11 bot plugin framework developed in Rust. -More documentation can be found in the [Kovi Doc](https://www.threkork.me/kovi-doc/). +More documentation can be found in the [Kovi Doc](https://threkork.github.io/kovi-doc/). The project is currently in beta. @@ -161,4 +161,4 @@ The closure passed to `plugin.on_msg()` runs every time a message is received. Kovi has encapsulated all available OneBot standard APIs. To extend the API, you can use `RuntimeBot`'s `send_api()` to send APIs yourself. -More documentation can be found in the [Kovi Doc](https://www.threkork.me/kovi-doc/). \ No newline at end of file +More documentation can be found in the [Kovi Doc](https://threkork.github.io/kovi-doc/). \ No newline at end of file diff --git a/README_zh.md b/README_zh.md index 6990ff3..7db7eac 100644 --- a/README_zh.md +++ b/README_zh.md @@ -10,7 +10,7 @@ 使用 Rust 开发的 OneBot V11 机器人插件框架。 -你可以在 [Kovi使用手册](https://www.threkork.me/kovi-doc/) 看到更多文档 +你可以在 [Kovi使用手册](https://threkork.github.io/kovi-doc/) 看到更多文档 项目处于 beta 状态。 @@ -167,4 +167,4 @@ pub fn main(mut plugin: PluginBuilder) { Kovi 已封装所有可用 OneBot 标准 api ,拓展 api 你可以使用 `RuntimeBot` 的 `send_api()` 来自行发送 api -你可以在 [Kovi使用手册](https://www.threkork.me/kovi-doc/) 看到更多文档 \ No newline at end of file +你可以在 [Kovi使用手册](https://threkork.github.io/kovi-doc/) 看到更多文档 \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index b2244db..d9a89ac 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,9 +3,9 @@ //! A OneBot V11 bot framework developed using Rust. //! The project is in beta status. //! -//! More documentation can be found at [Github-Kovi](https://github.com/Threkork/Kovi) Or [Kovi-doc](https://www.threkork.me/kovi-doc) +//! More documentation can be found at [Github-Kovi](https://github.com/Threkork/Kovi) Or [Kovi-doc](https://threkork.github.io/kovi-doc/) //! -//! 中文文档或更多文档请查看[Github-Kovi](https://github.com/Threkork/Kovi) 和 [Kovi-doc](https://www.threkork.me/kovi-doc) +//! 中文文档或更多文档请查看[Github-Kovi](https://github.com/Threkork/Kovi) 和 [Kovi-doc](https://threkork.github.io/kovi-doc/) mod log;