feat(multiplayer): support add/edit/remove playlist item

This commit is contained in:
MingxuanGame
2025-08-02 01:56:54 +00:00
parent 884a3f1cc2
commit 86e2313c50
5 changed files with 441 additions and 15 deletions

10
app/exception.py Normal file
View File

@@ -0,0 +1,10 @@
from __future__ import annotations
class SignalRException(Exception):
pass
class InvokeException(SignalRException):
def __init__(self, message: str) -> None:
self.message = message