github.com/cozy/cozy-stack@v0.0.0-20240327093429-939e4a21320e/model/vfs/trash.go (about)

     1  package vfs
     2  
     3  // TrashJournal is a list of files that have been deleted of CouchDB when the
     4  // trash was cleared, but removing them from Swift is slow and should be done
     5  // later via the trash-files worker.
     6  type TrashJournal struct {
     7  	FileIDs     []string `json:"ids"`
     8  	ObjectNames []string `json:"objects"`
     9  }