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