intimate/platform_list.go
2020-09-15 17:09:22 +08:00

22 lines
381 B
Go

package intimate
// Platform 源的table列表
type Platform string
const (
// Popenrec openrec 平台
Popenrec Platform = "openrec"
// Ptwitch twitch 平台
Ptwitch Platform = "twitch"
// Ptwitcasting twitcasting 平台
Ptwitcasting Platform = "twitcasting"
// PNimo PNimo 平台
PNimo Platform = "nimo"
// PMirrativ PNimo 平台
PMirrativ Platform = "mirrativ"
)