refactor: modularize API routes into separate files and clean up dependencies

This commit is contained in:
2026-04-09 11:58:57 -04:00
parent 551664bc43
commit 29a2cf2738
45 changed files with 541 additions and 344 deletions

View File

@@ -410,7 +410,7 @@ class SQLiteRepository(BaseRepository):
_d = dict(_row)
try:
_d["payload"] = json.loads(_d["payload"])
except Exception:
except Exception: # nosec B110
pass
_results.append(_d)
return _results