blob: f44516f112248cb02ae6dbc61bbb569e9d7e844f [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 "echo_server_app.h"
#include <lib/async-loop/cpp/loop.h>
#include <lib/async-loop/default.h>
#include <string>
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToCurrentThread);
bool quiet = (argc >= 2) && std::string("-q") == argv[1];
echo::EchoServerApp app(quiet);
loop.Run();
return 0;
}