diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/splitscreen_duo/__init__.py | 4 | ||||
| -rw-r--r-- | src/splitscreen_duo/__main__.py | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/splitscreen_duo/__init__.py b/src/splitscreen_duo/__init__.py new file mode 100644 index 0000000..eea3683 --- /dev/null +++ b/src/splitscreen_duo/__init__.py @@ -0,0 +1,4 @@ +def main() -> int: + print("The Dual Screen Console") + + return 0 diff --git a/src/splitscreen_duo/__main__.py b/src/splitscreen_duo/__main__.py new file mode 100644 index 0000000..8d8de62 --- /dev/null +++ b/src/splitscreen_duo/__main__.py @@ -0,0 +1,4 @@ +import test +import sys + +sys.exit(test.main()) |