14 lines
179 B
Python
14 lines
179 B
Python
# SPDX-FileCopyrightText: 2023 Gregor Kleen
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import os, sys
|
|
|
|
|
|
def main():
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|