zellio/utterson

View on GitHub
lib/utterson/route/index.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Utterson::Route::Index
  def self.registered(app)
    app.get '/' do
      erb :index, locals: { title: '' }
    end
  end
end