blob: da9abb0d4989d7cfbad4d39a040782f1d546bd87 [file] [log] [blame]
// Copyright 2020 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.
use {
anyhow::Error, fuchsia_async as fasync, fuchsia_syslog as syslog, setui_client_lib::*,
structopt::StructOpt,
};
#[fasync::run_singlethreaded]
async fn main() -> Result<(), Error> {
syslog::init_with_tags(&["setui-client"]).expect("Can't init logger");
let command = SettingClient::from_args();
run_command(command).await?;
Ok(())
}