speedtest/main.go
Maddie Zhan 96ea2ede4c Remove chunk size setting
Conforms with the PHP backend behavior
2020-03-19 11:02:23 +08:00

17 lines
219 B
Go

package main
import (
"backend/config"
"backend/database"
"backend/web"
log "github.com/sirupsen/logrus"
)
func main() {
conf := config.Load()
database.SetDBInfo(&conf)
log.Fatal(web.ListenAndServe(&conf))
}