blob: ee5494a4224e8015aeb3d0ae510a6a748e14e283 [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 <string>
#include <lib/async-loop/cpp/loop.h>
#include "garnet/examples/ui/hello_input/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 started.";
async::Loop loop(&kAsyncLoopConfigAttachToThread);
examples_ui_hello_input::App app(&loop);
loop.Run();
return 0;
}