blob: fee14da4094e0cb38d7c16a671323d6136e76a5d [file] [log] [blame]
// Copyright 2019 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 "src/connectivity/weave/weavestack/app.h"
int main(void) {
weavestack::App app;
zx_status_t status;
status = app.Init();
if (status != ZX_OK) {
return status;
}
status = app.Run();
if (status != ZX_OK) {
return status;
}
return ZX_OK;
}