blob: dfb43a2f61c0c7362e388adaed7b11cf3aaa3d13 [file] [log] [blame]
Ken Turneredb93932018-02-14 05:27:31 +11001// Copyright 2018 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <base/logging.h>
6#include <brillo/syslog_logging.h>
7
Honglin Yu7b6c1192020-09-16 10:07:17 +10008#include "ml/process.h"
Ken Turneredb93932018-02-14 05:27:31 +11009
10int main(int argc, char* argv[]) {
alanlxla9065132020-08-13 10:22:41 +100011 brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderrIfTty);
alanlxla9065132020-08-13 10:22:41 +100012
Honglin Yu7b6c1192020-09-16 10:07:17 +100013 return ml::Process::GetInstance()->Run(argc, argv);
Ken Turneredb93932018-02-14 05:27:31 +110014}