hiroto-k/trysail-blog-notification

View on GitHub
lib/blog_notification/command/console_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module BlogNotification::Command
  class ConsoleCommand < BaseCommand

    # Start command.
    def start
      Pry.start
    end

  end
end