fedux-org/proxy_pac_rb

View on GitHub
lib/proxy_pac_rb/cli/find.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: utf-8
# frozen_string_literal: true
module ProxyPacRb
  module Cli
    # Find things
    class Find < Thor
      register(FindProxy, 'proxy', 'proxy', 'Find proxy for URL(s)')

      default_command :proxy
    end
  end
end