class SmartTodo::Dispatchers::Output

A simple dispatcher that will output the reminder.

Public Class Methods

validate_options!(_) click to toggle source
# File lib/smart_todo/dispatchers/output.rb, line 7
def self.validate_options!(_); end

Public Instance Methods

dispatch() click to toggle source

@return void

# File lib/smart_todo/dispatchers/output.rb, line 10
def dispatch
  puts slack_message({})
end