hiroto-k/alt-tl

View on GitHub
lib/alt_tl/commands/console_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module AltTL
  module Commands
    class ConsoleCommand < Command

      # Start console command.
      def start
        Pry.start
      end
    end
  end
end