blob: 15035c01c2b02c58abb184d9b183134a3c7e3756 [file] [log] [blame]
// 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.
//! Spinel SPI Driver for Fuchsia
use anyhow::{Context as _, Error};
use fuchsia_async as fasync;
#[fasync::run_singlethreaded]
async fn main() -> Result<(), Error> {
fuchsia_syslog::init_with_tags(&["spinel_spi_driver"]).context("initialize logging")?;
Ok(())
}