9 lines
239 B
Python
9 lines
239 B
Python
# SPDX-FileCopyrightText: 2023-present Waylon S. Walker <waylon@waylonwalker.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
from .cli import marvin_sw_text_adventure.game import game
|
|
|
|
sys.exit(game())
|