blob: f43b27ec79f830debf2d477ede51df5efb13baad [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 "src/speech/tts/tts_service_impl.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
tts::TtsServiceImpl impl(sys::ComponentContext::Create());
if (impl.Init() != ZX_OK)
return -1;
loop.Run();
return 0;
}