18 lines
450 B
Kotlin
18 lines
450 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
package moe.nea.firmament.dbus
|
|
|
|
import org.freedesktop.dbus.annotations.DBusInterfaceName
|
|
import org.freedesktop.dbus.interfaces.DBusInterface
|
|
|
|
@DBusInterfaceName("moe.nea.Firmament")
|
|
interface FirmamentDbusInterface : DBusInterface {
|
|
fun sayHello(): String
|
|
fun getCurrentRepoCommit(): String
|
|
fun requestRepoReDownload()
|
|
}
|