blob: 4a44559810fb52ced7007d42afabc475d8322ed6 [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 "garnet/bin/media/camera_manager/camera_manager_impl.h"
#include <lib/async-loop/cpp/loop.h>
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
camera::CameraManagerImpl app(&loop);
loop.Run();
return 0;
}