blob: 5351607079091ecee2c984a285004615ef30370e [file] [log] [blame]
// Copyright 2019 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 "src/developer/cmd/app.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigNeverAttachToThread);
cmd::App app(loop.dispatcher());
if (!app.Init(argc, argv, [&] { loop.Quit(); })) {
return -1;
}
loop.Run();
return 0;
}