ZeroBot-Plugin/plugin_cpstory/model.go
himawari 486160fc57
添加cp短打 (#94)
* feat:添加cp短打插件

* feat:匹配中英文标点符号和中文字符
2021-12-26 22:00:02 +08:00

14 lines
224 B
Go

package cpstory
type CpStory struct {
Id int64 `db:"id"`
Gong string `db:"gong"`
Shou string `db:"shou"`
Story string `db:"story"`
}
func getRandomCpStory() (cs CpStory) {
_ = db.Pick("cp_story", &cs)
return
}