From 18ef0b450561866c1484c42faf05c0304e53f6aa Mon Sep 17 00:00:00 2001 From: arvinxx Date: Sat, 19 Aug 2023 11:19:14 +0800 Subject: [PATCH] :sparkles: feat: add public manifest --- public/manifest.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 public/manifest.json diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..8edd19a --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,20 @@ +{ + "name": "realtimeWeather", + "schema": { + "description": "获取当前天气情况", + "name": "realtimeWeather", + "parameters": { + "properties": { + "city": { + "description": "城市名称", + "type": "string" + } + }, + "required": ["city"], + "type": "object" + } + }, + "server": { + "url": "https://realtime-weather.chat-plugin.lobehub.com/api/v1" + } +}