class Steep::CLI

def process_annotations

def process_annotations
  Drivers::Annotations.new(stdout: stdout, stderr: stderr).tap do |command|
    OptionParser.new do |opts|
      opts.banner = <<BANNER
e: steep annotations [options] [sources]
ription:
Prints the type annotations in the Ruby code.
ons:
ER
      handle_logging_options opts
    end.parse!(argv)
    command.command_line_patterns.push(*argv)
  end.run
end