mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-20 06:20:08 +08:00
14 lines
224 B
Go
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
|
|
}
|