This repository has been archived on 2022-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
dcbot-old/scraper/helpers.go

17 lines
289 B
Go

package scraper
import "time"
var (
TwstatsURLs = map[string]string{
"pl": "https://pl.twstats.com",
}
Locations = loadLocations()
)
func loadLocations() map[string]*time.Location {
m := make(map[string]*time.Location)
m["pl"], _ = time.LoadLocation("Europe/Warsaw")
return m
}