10 lines
211 B
Go

package constants
import "time"
const (
// dateFormat is the format to use when inserting any timestamp into the
// database, or when parsing a value retrieved from the database
DateFormat = time.RFC3339
)