blob: 600eaa9f854da4f6dd12cc51ef66f18c547ae54d [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 "simple_camera_server_app.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
simple_camera::SimpleCameraApp app;
loop.Run();
return 0;
}