1
0
mirror of synced 2024-09-24 11:28:25 +02:00
bemaniutils/frontend

11 lines
261 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__))
name = os.path.basename(__file__)
2021-05-29 01:50:59 +02:00
import sys
sys.path.append(path)
2021-05-29 01:50:59 +02:00
import runpy
runpy.run_module(f"bemani.utils.{name}", run_name="__main__")