blob: f175894b3e9114f3c60641a361af582256fa2c43 [file] [log] [blame]
// Copyright 2017 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 "garnet/bin/network_time/time_service.h"
#include "lib/fxl/command_line.h"
#include "lib/fxl/log_settings_command_line.h"
int main(int argc, char** argv) {
auto command_line = fxl::CommandLineFromArgcArgv(argc, argv);
if (!fxl::SetLogSettingsFromCommandLine(command_line))
return 1;
timeservice::TimeService service("/pkg/data/roughtime-servers.json");
service.Run();
return 0;
}