blob: 2fc70482f2975ffaed766f3f8f6237794c07e7cf [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/message_loop/message_loop.h"
#include "mash/catalog_viewer/catalog_viewer.h"
#include "services/service_manager/public/cpp/service_executable/service_main.h"
void ServiceMain(service_manager::mojom::ServiceRequest request) {
base::MessageLoop message_loop;
mash::catalog_viewer::CatalogViewer(std::move(request)).RunUntilTermination();
}