├── .github ├── FUNDING.yml └── workflows │ └── test.yaml ├── LICENSE ├── README.md ├── example_test.go ├── go.mod ├── timezone.go ├── timezone_test.go ├── timezones.go ├── tools ├── gen-var-timezones.py ├── gen-var-tzabbrinfos.py └── gen-var-tzinfos.py ├── tz_abbr_infos.go ├── tz_infos.go └── tzinfo.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/README.md -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/tkuchiki/go-timezone 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /timezone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/timezone.go -------------------------------------------------------------------------------- /timezone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/timezone_test.go -------------------------------------------------------------------------------- /timezones.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/timezones.go -------------------------------------------------------------------------------- /tools/gen-var-timezones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/tools/gen-var-timezones.py -------------------------------------------------------------------------------- /tools/gen-var-tzabbrinfos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/tools/gen-var-tzabbrinfos.py -------------------------------------------------------------------------------- /tools/gen-var-tzinfos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/tools/gen-var-tzinfos.py -------------------------------------------------------------------------------- /tz_abbr_infos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/tz_abbr_infos.go -------------------------------------------------------------------------------- /tz_infos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/tz_infos.go -------------------------------------------------------------------------------- /tzinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkuchiki/go-timezone/HEAD/tzinfo.go --------------------------------------------------------------------------------