blob: 52eb983d8d263b418ca2c83a12c25d164b7b50b8 [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 <lib/async-loop/cpp/loop.h>
#include "topaz/runtime/web_runner_prototype/runner.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
web::Runner runner(component::StartupContext::CreateFromStartupInfo());
loop.Run();
return 0;
}