class Falcon::Command::Redirect

def environment(**options)

def environment(**options)
	Async::Service::Environment.new(Falcon::Environment::Redirect).with(
		root: Dir.pwd,
		name: self.class.name,
		verbose: self.parent&.verbose?,
		url: @options[:bind],
		redirect_url: @options[:redirect],
		timeout: @options[:timeout],
		**options
	)
end