package cli import "time" // nowFn returns the current time. It is an indirection so tests can stub it // via package-internal reassignment (see accounts_test.go). var nowFn = func() time.Time { return time.Now().UTC() }