2020-07-13 18:10:48 +08:00
|
|
|
package intimate
|
|
|
|
|
|
|
|
// Platform 源的table列表
|
|
|
|
type Platform string
|
|
|
|
|
|
|
|
const (
|
2020-07-24 18:48:33 +08:00
|
|
|
// Popenrec openrec 平台
|
2020-07-13 18:10:48 +08:00
|
|
|
Popenrec Platform = "openrec"
|
2020-07-24 18:48:33 +08:00
|
|
|
|
|
|
|
// Ptwitch twitch 平台
|
|
|
|
Ptwitch Platform = "twitch"
|
2020-08-05 18:49:47 +08:00
|
|
|
|
|
|
|
// Ptwitcasting twitcasting 平台
|
|
|
|
Ptwitcasting Platform = "twitcasting"
|
2020-08-28 19:07:12 +08:00
|
|
|
|
|
|
|
// PNimo PNimo 平台
|
|
|
|
PNimo Platform = "nimo"
|
2020-09-15 17:09:22 +08:00
|
|
|
|
|
|
|
// PMirrativ PNimo 平台
|
|
|
|
PMirrativ Platform = "mirrativ"
|
2020-07-13 18:10:48 +08:00
|
|
|
)
|