1
0
mirror of synced 2024-09-23 19:08:21 +02:00
bemaniutils/services
2023-07-29 20:40:42 +00:00

13 lines
339 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)
os.environ["SQLALCHEMY_SILENCE_UBER_WARNING"] = "1"
import runpy
runpy.run_module(f"bemani.utils.{name}", run_name="__main__")