blob: a06c184ca6e3fb91896ba76b996e2c587d5a1ad9 [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/examples/ui/hello_input/child/app.h"
#include "lib/fxl/command_line.h"
#include "lib/fxl/logging.h"
#include "lib/fxl/log_settings_command_line.h"
int main(int argc, const char** argv) {
auto command_line = fxl::CommandLineFromArgcArgv(argc, argv);
if (!fxl::SetLogSettingsFromCommandLine(command_line))
return 1;
FXL_LOG(INFO) << "hello_input_child started.";
async::Loop loop(&kAsyncLoopConfigAttachToThread);
examples_ui_hello_input_child::App app(&loop);
loop.Run();
return 0;
}