Remove disabled backends

This commit is contained in:
Unrud 2022-02-21 22:30:28 +01:00
parent 89131db79b
commit 2211b8a662
7 changed files with 23 additions and 88 deletions

View file

@ -48,6 +48,10 @@ type portalBackend struct {
lock sync.RWMutex
}
func init() {
RegisterBackend("RemoteDesktop portal", InitPortalBackend, 1)
}
func InitPortalBackend() (Backend, error) {
bus, err := dbus.SessionBusPrivate()
if err != nil {