func WithClock()

in options.go [55:60]


func WithClock(clock Clock) Option {
	return func(app *App) error {
		app.clock = clock
		return nil
	}
}