1
0
Fork 1
mirror of https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git synced 2025-07-13 11:29:46 +03:00
pmbootstrap/pmb/commands/base.py
2024-12-19 10:09:22 +00:00

10 lines
235 B
Python

# Copyright 2024 Caleb Connolly
# SPDX-License-Identifier: GPL-3.0-or-later
class Command:
"""Base class for pmbootstrap commands."""
def run(self) -> None:
"""Run the command."""
raise NotImplementedError()