2020-07-10 04:05:33 +00:00
|
|
|
package intimate
|
|
|
|
|
|
|
|
// SourceTable 源的table列表
|
|
|
|
type SourceTable string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// STOpenrec openrec源table名称
|
|
|
|
STOpenrec SourceTable = "source_openrec"
|
|
|
|
|
2020-07-23 10:29:56 +00:00
|
|
|
// STTwitch twitch源table名称
|
|
|
|
STTwitch SourceTable = "source_twitch"
|
2020-08-05 10:49:47 +00:00
|
|
|
|
|
|
|
// STTwitcasting STTwitcasting源table名称
|
|
|
|
STTwitcasting SourceTable = "source_twitcasting"
|
2020-07-23 10:29:56 +00:00
|
|
|
)
|