blob: 0c4d91bc704809f9821f1e8eb577c8abcf1c4f0e [file] [log] [blame]
// Copyright 2021 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.
extern crate anyhow;
extern crate dbus as dbus_crate;
extern crate once_cell;
mod common;
mod dbus;
mod memory;
#[cfg(test)]
mod test;
use anyhow::Result;
fn main() -> Result<()> {
dbus::start_service()
}