1
0
mirror of synced 2024-11-12 01:00:46 +01:00
bemaniutils/shell

10 lines
218 B
Plaintext
Raw Permalink Normal View History

#! /usr/bin/env python3
2021-05-29 01:50:59 +02:00
if __name__ == "__main__":
import os
path = os.path.abspath(os.path.dirname(__file__))
2021-05-29 01:50:59 +02:00
import sys
sys.path.append(path)
2021-05-29 01:50:59 +02:00
import code
code.InteractiveConsole().interact()