blob: 34e97cc7cb39bf0ebf775778aac11f85472c9d42 [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 <string>
#include <lib/async-loop/cpp/loop.h>
#include <lib/component/cpp/startup_context.h>
#include "codec_factory_app.h"
int main(int argc, char* argv[]) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
codec_factory::CodecFactoryApp app(&loop);
loop.Run();
return 0;
}