#!/usr/bin/env ruby
=begin
    Copyright 2010-2022 Ecsypno <http://www.ecsypno.com>

    This file is part of the Arachni Framework project and is subject to
    redistribution and commercial restrictions. Please see the Arachni Framework
    web site for more information on licensing and terms of use.
=end

require_relative '../lib/arachni'
require_relative '../ui/cli/rpc/client/local'

if Arachni.windows?
    Arachni::UI::Output.print_error "This interface is not available on MS Windows."
    exit
end

Arachni::UI::CLI::RPC::Client::Local.new
