module Honeybadger

def notify(exception_or_opts, opts = {})

Other tags:
    See: Agent#notify -
def notify(exception_or_opts, opts = {})
  # Note this is defined directly (instead of via forwardable) so that
  # generated stack traces work as expected.
  Agent.instance.notify(exception_or_opts, opts)
end