module Roda::RodaPlugins::Base::RequestMethods

def session

a session handler has not been loaded.
The session for the current request. Raises a RodaError if
def session
  @env['rack.session'] || raise(RodaError, "You're missing a session handler. You can get started by adding use Rack::Session::Cookie")
end