func()

in options.go [28:35]


func (app *App) applyOptions(opts ...Option) (errs error) {
	for _, opt := range opts {
		if err := opt(app); err != nil {
			errs = multierror.Append(errs, err)
		}
	}
	return errs
}