package content import "time" // now is the only place the engine reads the wall clock, which `verify.sh` enforces by filename: a render // that depends on the time is only true for a while, and that is worth being able to find. // // A variable so a test can hold time still. Nothing else assigns it. var now = time.Now // Now is the current time as the engine sees it, for whoever needs to date something. func Now() time.Time { return now() }