blob: 61c2e3eddca8822a89ec86bef3d618b4e36aa4a9 [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 "display_manager_impl.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
display::DisplayManagerImpl manager;
loop.Run();
return 0;
}