forked from Mirror/pmbootstrap
10 lines
235 B
Python
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()
|