blob: 7df17ef4a5c96de205a99c55e8fc803e31a3513c [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 "src/camera/camera_manager/camera_manager_impl.h"
int main() {
FXL_LOG(INFO) << "Camera Manager Starting";
async::Loop loop(&kAsyncLoopConfigAttachToThread);
camera::CameraManagerImpl app(&loop);
loop.Run();
return 0;
}