blob: 6b96257bf3ff1bdbb3ba738a6389c0b41d500942 [file] [log] [blame]
// Copyright 2017 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/bin/tts/tts_service_impl.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
tts::TtsServiceImpl impl(component::StartupContext::CreateFromStartupInfo());
if (impl.Init() != ZX_OK)
return -1;
loop.Run();
return 0;
}