blob: 34c33930d5a97de4d252618b5bacc74104133bbd [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 <lib/async-loop/cpp/loop.h>
#include <lib/async-loop/default.h>
#include "src/camera/camera_manager/camera_manager_impl.h"
int main() {
FXL_LOG(INFO) << "Camera Manager Starting";
async::Loop loop(&kAsyncLoopConfigAttachToCurrentThread);
camera::CameraManagerImpl app(&loop);
loop.Run();
return 0;
}