module Roda::RodaPlugins::Heartbeat

def self.configure(app, opts=OPTS)

Set the heartbeat path to the given path.
def self.configure(app, opts=OPTS)
  app.opts[:heartbeat_path] = (opts[:path] || app.opts[:heartbeat_path] || "/heartbeat").dup.freeze
end

def self.load_dependencies(app, opts=OPTS)

def self.load_dependencies(app, opts=OPTS)
  app.plugin :_before_hook
end