8 lines
126 B
Python
8 lines
126 B
Python
"""Executable wrapper for running the signaling server."""
|
|
|
|
from app.server import run
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run()
|