intimate/platform_list.go
2020-08-05 18:49:47 +08:00

16 lines
271 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"
)