class Mihari::Notifiers::Base

Public Instance Methods

notify() click to toggle source

Send a notification

@return [nil]

# File lib/mihari/notifiers/base.rb, line 19
def notify
  raise NotImplementedError, "You must implement #{self.class}##{__method__}"
end
valid?() click to toggle source

Validate notifier availability

@return [Boolean]

# File lib/mihari/notifiers/base.rb, line 10
def valid?
  raise NotImplementedError, "You must implement #{self.class}##{__method__}"
end