databoard-transform/main.go

16 lines
156 B
Go
Raw Normal View History

2020-11-30 07:43:16 +00:00
package main
import (
2020-11-30 08:10:53 +00:00
_ "github.com/go-sql-driver/mysql"
2020-11-30 07:43:16 +00:00
)
2020-12-09 09:43:47 +00:00
func init() {
2020-12-09 02:54:13 +00:00
2020-12-09 02:47:19 +00:00
}
2020-11-30 07:43:16 +00:00
func main() {
worker.Handler(collectCopyCountLiveAnchors)
2020-11-30 07:43:16 +00:00
worker.Run()
2020-11-30 07:43:16 +00:00
}