Users are expected to inherit from this class to define their app routes.
Examples:
# config/routes.rb
# frozen_string_literal: true
require "hanami/routes"
module MyApp
class Routes < Hanami::Routes
root to: "home.show"
end
end
See {Hanami::Slice::Router} for the syntax allowed within the `define` block.