Sha256: 4ffb0000086d8947c018bfa5d53f76bc9af3cacdca06c4b1e178500bb5b847a5

Contents?: true

Size: 274 Bytes

Versions: 1

Compression:

Stored size: 274 Bytes

Contents

require 'dry/web/application'

module Simple
  class Application < Dry::Web::Application
    configure do |config|
      config.routes = 'web/routes'.freeze
      config.container = Container
    end

    route do |r|
      r.multi_route
    end

    load_routes!
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dry-web-0.1.0 skeletons/simple/core/simple/application.rb