Working in PG datastore.

This commit is contained in:
Matthew Dillon 2014-09-30 15:13:36 -08:00
parent 76d5264474
commit 1e283e7cd6
8 changed files with 210 additions and 1 deletions

View file

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