Files
waydroid/tools/actions/__init__.py
Alessandro Astone 5d6f413c40 init: Allow re-initializing while container daemon is running
* Make the container service always expose the initializer object on DBus
* Add `waydroid init --client` to always bring up the GTK initializer client
2025-11-11 00:20:44 +01:00

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