1
0
mirror of synced 2024-09-24 03:18:22 +02:00
bemaniutils/jsx
2022-08-04 00:10:21 +00:00

11 lines
261 B
Python
Executable File

#! /usr/bin/env python3
if __name__ == "__main__":
import os
path = os.path.abspath(os.path.dirname(__file__))
name = os.path.basename(__file__)
import sys
sys.path.append(path)
import runpy
runpy.run_module(f"bemani.utils.{name}", run_name="__main__")