12 lines
304 B
Python
Executable File
12 lines
304 B
Python
Executable File
#! /usr/bin/env python3
|
|
if __name__ == "__main__":
|
|
import os
|
|
path = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
import sys
|
|
sys.path.append(path)
|
|
os.environ["SQLALCHEMY_SILENCE_UBER_WARNING"] = "1"
|
|
|
|
import runpy
|
|
runpy.run_module("bemani.utils.twodxutils", run_name="__main__")
|