Add export / import routes

This commit is contained in:
2026-03-20 14:05:29 +01:00
parent ce3925423f
commit 55bd127254
4 changed files with 86 additions and 6 deletions

View File

@@ -16,3 +16,15 @@ type FileRecord struct {
Deleted bool `json:"deleted"`
CreatedAt time.Time `json:"created_at"`
}
type ImportFileRecord struct {
ID string `json:"id"`
DeletionID string `json:"deletion_id"`
Filename string `json:"filename"`
ExpiresAt time.Time `json:"expires_at"`
DeleteAfterDownload bool `json:"delete_after_download"`
Size int64 `json:"size"`
DownloadCount int `json:"download_count"`
Deleted bool `json:"deleted"`
CreatedAt time.Time `json:"created_at"`
}