mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
12 lines
419 B
Rust
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");
|