update events via wrapper routers

This commit is contained in:
2025-01-16 19:32:59 +03:00
parent 049a7c1e11
commit 426b69b33c
42 changed files with 2344 additions and 460 deletions

View File

@@ -0,0 +1,5 @@
def get_line_number_for_error():
from inspect import currentframe, getframeinfo
frameinfo = getframeinfo(currentframe())
return f"{frameinfo.filename} | {frameinfo.lineno}"