creeper-adventure/creeper_adventure/__main__.py

9 lines
228 B
Python

# SPDX-FileCopyrightText: 2023-present Waylon S. Walker <waylon@waylonwalker.com>
#
# SPDX-License-Identifier: MIT
import sys
if __name__ == '__main__':
from .cli import creeper_adventure
sys.exit(creeper_adventure())