1
0
mirror of synced 2024-09-23 19:08:21 +02:00
bemaniutils/shell

10 lines
218 B
Plaintext
Raw 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()