blob: 8c1f25375eeec5a081dcfdcf3807f13b32a49a81 [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 "garnet/bin/guest/mgr/environment_manager_impl.h"
int main(int argc, char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
guestmgr::EnvironmentManagerImpl env_mgr;
loop.Run();
}