blob: 86e8091d84e4b58a5a71b8eb41ac412a73debe34 [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"
#include "src/lib/syslog/cpp/logger.h"
int main() {
syslog::InitLogger({"camera_manager"});
async::Loop loop(&kAsyncLoopConfigAttachToCurrentThread);
camera::CameraManagerImpl app(&loop);
loop.Run();
return 0;
}