weather

package
v0.0.0-...-ff1ea2f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 4, 2023 License: AGPL-3.0 Imports: 8 Imported by: 0

README

介绍

🔔 注意:以下[]符号内代表此处是需要填写内容,并且不需要[]符号

  • 插件名:查天气
  • 权限:所有好友和群聊
  • 数据来源:https://dev.qweather.com
  • 注意:请先私聊机器人配置appKey,相关秘钥申请地址点上面链接
  • 指令:
    • [城市名]天气
    • set weather appKey [appKey] 设置和风天气apiKey
    • get weather info 获取当前插件信息

预览:

img

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Location

type Location struct {
	Name string `json:"name"`
	Id   string `json:"id"`
	Adm2 string `json:"adm2"`
	Adm1 string `json:"adm1"`
}

type Weather

type Weather struct {
	AppKey string `gorm:"column:app_key"`
}

type WeatherDay

type WeatherDay struct {
	FxDate    string `json:"fxDate"`    // 预报日期
	Sunrise   string `json:"sunrise"`   // 日出时间
	Sunset    string `json:"sunset"`    // 日落时间
	TempMax   string `json:"tempMax"`   // 最高温度
	TempMin   string `json:"tempMin"`   // 最低温度
	TextDay   string `json:"textDay"`   // 白天天气现象文字
	TextNight string `json:"textNight"` // 晚间天气现象文字
}

type WeatherNow

type WeatherNow struct {
	UpdateTime string `json:"updateTime"` // 更新时间
	Temp       string `json:"temp"`       // 温度
	FeelsLike  string `json:"feelsLike"`  // 体感温度
	Text       string `json:"text"`       // 天气状况
	Precip     string `json:"precip"`     // 降水量
	Vis        string `json:"vis"`        // 能见度
	Cloud      string `json:"cloud"`      // 云量
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL