From 65e44b10247e3d1e7f15f3b46c76726af0074078 Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Sat, 24 Aug 2024 16:11:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E4=B8=8A=20serve=20=E7=9A=84=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 38 ++++++++++++++++++++++++++++++++++++++ update.md | 1 + 2 files changed, 39 insertions(+) diff --git a/readme.md b/readme.md index a40ad22..3526fc5 100644 --- a/readme.md +++ b/readme.md @@ -6,6 +6,44 @@ Rewritten in Rust ! (其实最早 v1 就是用 rust 写的, 不过我 2023 年 6 月 可才刚学 rust, 代码写的很烂, 所以还是回到了 python 小脚本) +### API + +现在支持提供 api 了 + +- `GET /last_data` 获取最新的数据信息 + - 返回范例: + + ```json + { + "save_id": 1322269, + "save_type": "save", + "len": 3404, + "blake_hash": "0b4758dbda98fea0ab6ad58fd589ccc7bb14c29ab8b22e6e49b670db8fec8da9" + } + ``` + +- `GET /last_save` 获取最新的存档信息 + - 返回范例: + + ```json + { + "save_id": 1322269, + "len": 3404, + "blake_hash": "0b4758dbda98fea0ab6ad58fd589ccc7bb14c29ab8b22e6e49b670db8fec8da9" + } + ``` + +- `GET /last_ship` 获取最新的船只信息 + - 返回范例: + + ```json + { + "save_id": 1322267, + "len": 38967, + "blake_hash": "9474267203155e5cf31e0e7e34ec014773f8f89c78d262f5bd57b6e27fdc25b2" + } + ``` + ## V1 > 2023 06 diff --git a/update.md b/update.md index fd141b1..9225fdf 100644 --- a/update.md +++ b/update.md @@ -3,6 +3,7 @@ ## 1.1.0 现在加了个 serve 模式, 可以用来提供一个 api +API 信息参考 readme ## 1.0.2