forked from Mirror/pmbootstrap
See: https://gitlab.com/postmarketOS/pmbootstrap/-/issues/2324 Closes: https://gitlab.com/postmarketOS/pmbootstrap/-/merge_requests/2278
10 lines
227 B
Python
10 lines
227 B
Python
# Copyright 2024 Caleb Connolly
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
class Command:
|
|
"""Base class for pmbootstrap commands."""
|
|
|
|
def run(self):
|
|
"""Run the command."""
|
|
raise NotImplementedError()
|