class Falcon::Command::Virtual

def run(verbose = false)

def run(verbose = false)
	configuration = Configuration.new(verbose)
	container = Async::Container.new
	
	@paths.each do |path|
		path = File.expand_path(path)
		root = File.dirname(path)
		
		configuration.load_file(path)
		
		spawn(path, container, chdir: root)
	end
	
	hosts = Hosts.new(configuration)
	hosts.run(container, **@options)
	
	return container
end