Remove PostgreSQL support and standardize on SQLite only.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-07-02 16:21:27 +08:00
parent 9379bc4f4f
commit 8ebe1a3c77
6 changed files with 77 additions and 310 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ def register(deps) -> None:
def api_backup_info(filename):
try:
path = resolve_backup_file(filename)
return jsonify(inspect_backup_archive(path, check_backend=True))
return jsonify(inspect_backup_archive(path))
except (ValueError, FileNotFoundError) as exc:
return jsonify({"error": str(exc)}), 404