This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/datastore/datastore_test.go
2014-09-30 15:13:36 -08:00

9 lines
122 B
Go

package datastore
import "time"
func normalizeTime(t ...*time.Time) {
for _, v := range t {
*v = v.In(time.UTC)
}
}