blob: 2f651a2e28d44fa743222de58363b09d9da0b4af [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by app BSD-style license that can be
// found in the LICENSE file.
#include "intl_wisdom_server_impl.h"
#include "lib/async-loop/cpp/loop.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
intl_wisdom::IntlWisdomServerImpl server(
component::StartupContext::CreateFromStartupInfo());
loop.Run();
return 0;
}