5d50119825
change more
19 lines
403 B
Go
19 lines
403 B
Go
package intimate
|
|
|
|
// SourceTable 源的table列表
|
|
type SourceTable string
|
|
|
|
const (
|
|
// STOpenrec openrec源table名称
|
|
STOpenrec SourceTable = "source_openrec"
|
|
|
|
// STTwitch twitch源table名称
|
|
STTwitch SourceTable = "source_twitch"
|
|
|
|
// STTwitcasting STTwitcasting源table名称
|
|
STTwitcasting SourceTable = "source_twitcasting"
|
|
|
|
// STNimo nimo源table名称
|
|
STNimo SourceTable = "source_nimo"
|
|
)
|