class MSpec::Opal::Index

def call(env)

def call(env)
  if %w[/ /index.html].include? env['PATH_INFO']
    [200, { 'Content-Type' => 'text/html' }, [HTML]]
  else
    @app.call env
  end
end

def initialize(app)

def initialize(app)
  @app = app
end