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-07-13 18:10:48 +08:00
|
|
|
)
|