intimate/table_list.go

19 lines
403 B
Go
Raw Normal View History

2020-07-10 12:05:33 +08:00
package intimate
// SourceTable 源的table列表
type SourceTable string
const (
// STOpenrec openrec源table名称
STOpenrec SourceTable = "source_openrec"
// STTwitch twitch源table名称
STTwitch SourceTable = "source_twitch"
2020-08-05 18:49:47 +08:00
// STTwitcasting STTwitcasting源table名称
STTwitcasting SourceTable = "source_twitcasting"
2020-08-28 19:07:12 +08:00
// STNimo nimo源table名称
STNimo SourceTable = "source_nimo"
)