module Roda::RodaPlugins::Assets

def self.load_dependencies(app, _opts = nil)

depends on them.
Load the render, caching, and h plugins, since the assets plugin
def self.load_dependencies(app, _opts = nil)
  app.plugin :render
  app.plugin :caching
  app.plugin :h
end