package tz import "time" var CST = time.FixedZone("CST", 8*3600) func Format(t time.Time, layout string) string { return t.In(CST).Format(layout) }