package clock import "time" // Now returns the current UTC time, used everywhere for wall-clock consistency. // All scheduling comparisons, timestamp recording, and duration calculations use // this function so they're consistent with the database (TIMESTAMPTZ in UTC). func Now() time.Time { return time.Now().UTC() }