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