blob: fcd830511cf23c1323609e268aac93c1875ad0b5 [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/lab/direct_input/child/app.h"
#include "src/lib/fxl/command_line.h"
#include "src/lib/fxl/log_settings_command_line.h"
#include "src/lib/fxl/logging.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) << "direct_input_child started.";
async::Loop loop(&kAsyncLoopConfigAttachToThread);
direct_input_child::App app(&loop);
loop.Run();
return 0;
}