svoop/rodbot

View on GitHub
lib/rodbot/cli/commands/stop.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen-string-literal: true

module Rodbot
  class CLI
    module Commands
      class Stop < Rodbot::CLI::Command
        desc 'Stop Rodbot'

        def rescued_call(**)
          Rodbot::Services.new.interrupt
        end
      end
    end
  end
end