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;
|
2022-08-01 13:18:24 -04:00
|
|
|
|
2024-05-16 21:29:28 -04:00
|
|
|
#[proxy(
|
2022-08-01 13:18:24 -04:00
|
|
|
interface = "com.system76.CosmicSession",
|
|
|
|
|
default_service = "com.system76.CosmicSession",
|
|
|
|
|
default_path = "/com/system76/CosmicSession"
|
|
|
|
|
)]
|
|
|
|
|
trait CosmicSession {
|
|
|
|
|
fn exit(&self) -> zbus::Result<()>;
|
|
|
|
|
}
|