9 lines
147 B
Python
9 lines
147 B
Python
from __future__ import annotations
|
|
|
|
from app.tray import run_tray_app
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_tray_app(host="127.0.0.1", port=8765)
|
|
|
|
|