aboutsummaryrefslogtreecommitdiff
path: root/interfaces/http/web/web.rb
blob: ca04ecce2f082e00e076d3c0653ed853ea2ebaa2 (plain)
1
2
3
4
5
6
class WebInterface < Sinatra::Base
  get '/' do
    @posts = Post.all
    erb :index
  end
end