blob: 141882b7f11fd516054f273d1f33d02152fe5006 [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 <string>
#include "example_server_app.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
example::ExampleServerApp app;
loop.Run();
return 0;
}