class Falcon::Command::Supervisor

def call

def call
	Async do
		endpoint.connect do |socket|
			stream = Async::IO::Stream.new(socket)
			
			@command.call(stream)
		end
	end
end

def endpoint

def endpoint
	Async::IO::Endpoint.unix(@options[:path])
end