mirror of
https://github.com/waydroid/waydroid.git
synced 2026-04-21 23:47:50 -04:00
* Make the container service always expose the initializer object on DBus * Add `waydroid init --client` to always bring up the GTK initializer client
11 lines
506 B
Python
11 lines
506 B
Python
# Copyright 2021 Erfan Abdi
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
from tools.actions.initializer import init, remote_init_client
|
|
from tools.actions.upgrader import upgrade
|
|
from tools.actions.session_manager import start, stop
|
|
from tools.actions.container_manager import start, stop, freeze, unfreeze
|
|
from tools.actions.app_manager import install, remove, launch, list
|
|
from tools.actions.status import print_status
|
|
from tools.actions.prop import get, set
|
|
from tools.actions.bugreport import bugreport
|