chore(signalr): move to app/

This commit is contained in:
MingxuanGame
2025-07-27 02:42:14 +00:00
parent b359be3637
commit 0d684a1288
12 changed files with 8 additions and 7 deletions

10
app/signalr/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