20 lines
374 B
Go
Raw Normal View History

2020-07-10 12:05:33 +08:00
package main
import (
_ "net/http/pprof"
)
/*
`uid` varchar(36) NOT NULL,
`platform` varchar(255) NOT NULL,
`anchor_id` varchar(255) NOT NULL,
`anchor_name` varchar(255) NOT NULL,
`live_url` text,
2020-07-10 18:31:17 +08:00
`channel` varchar(128) DEFAULT NULL, // 没有分类
`show_type` varchar(255) DEFAULT NULL,
*/
2020-07-10 12:05:33 +08:00
func main() {
2020-08-17 13:10:29 +08:00
Execute()
2020-07-10 12:05:33 +08:00
}