module Roda::RodaPlugins::Csrf

def self.configure(app, opts={})

Load the Rack::Csrf middleware into the app with the given options.
def self.configure(app, opts={})
  app.use CSRF, opts
end