We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4644edc commit b5acda3Copy full SHA for b5acda3
squarecloud/app.py
@@ -11,6 +11,7 @@
11
from .data import (
12
AppData,
13
Backup,
14
+ BackupInfo,
15
DeployData,
16
DomainAnalytics,
17
FileInfo,
@@ -647,3 +648,7 @@ async def set_custom_domain(self, custom_domain: str):
647
648
self.id, custom_domain, avoid_listener=True
649
)
650
return response
651
+
652
+ async def all_backups(self):
653
+ backups: list[BackupInfo] = await self.client.all_app_backups(self.id)
654
+ return backups
0 commit comments