blob: b9e63ec942011415d1d8c15ba80f1ba3dba6c759 [file] [log] [blame] [edit]
// 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/developer/shell/josh/console/console.h"
#include "src/lib/syslog/cpp/logger.h"
int main(int argc, char* argv[]) {
syslog::SetTags({"josh"});
return shell::ConsoleMain(argc, const_cast<const char**>(argv));
}