aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/dbus/FirmamentDbusInterface.kt
blob: 24b7dc859ff688782d61a304cc63ef90027696bc (plain)
1
2
3
4
5
6
7
8
9
10
11
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()
}