Files
asusctl/rog-types/src/lib.rs
2021-08-26 11:44:11 +12:00

12 lines
419 B
Rust

//! This crate is intended for shared types (eg, between daemon and CLI), or
//! for types that might be useful in third-party crates perhaps for
//! sending messages over dbus wire
pub static DBUS_NAME: &str = "org.asuslinux.Daemon";
pub static DBUS_PATH: &str = "/org/asuslinux/Daemon";
pub static DBUS_IFACE: &str = "org.asuslinux.Daemon";
pub mod supported;
pub static VERSION: &str = env!("CARGO_PKG_VERSION");