blob: 40eadcd53402b5966b8317a6964d5a5e8432398e [file] [log] [blame]
// Copyright 2018 The Chromium OS 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 <brillo/flag_helper.h>
#include <brillo/syslog_logging.h>
#include "diagnostics/wilco_dtc_supportd/wilco_dtc_supportd_daemon.h"
int main(int argc, char** argv) {
brillo::FlagHelper::Init(
argc, argv, "wilco_dtc_supportd - Support daemon for wilco_dtc.");
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderrIfTty);
return diagnostics::WilcoDtcSupportdDaemon().Run();
}