cosmic-applets/cosmic-applet-power/src/cosmic_session.rs

14 lines
334 B
Rust
Raw Normal View History

2024-05-06 15:39:04 +02:00
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
2024-05-16 21:29:28 -04:00
use zbus::proxy;
2024-05-16 21:29:28 -04:00
#[proxy(
interface = "com.system76.CosmicSession",
default_service = "com.system76.CosmicSession",
default_path = "/com/system76/CosmicSession"
)]
2024-11-05 11:56:50 -08:00
pub trait CosmicSession {
fn exit(&self) -> zbus::Result<()>;
}