add file listing to database abstraction.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-03-22 19:37:36 -07:00 committed by June
parent bdf3997de5
commit 6b1933914d
4 changed files with 29 additions and 0 deletions

View file

@ -286,4 +286,6 @@ lasttimelinecount_cache: {lasttimelinecount_cache}\n"
fn backup(&self) -> Result<(), Box<dyn std::error::Error>> { self.db.backup() }
fn backup_list(&self) -> Result<String> { self.db.backup_list() }
fn file_list(&self) -> Result<String> { self.db.file_list() }
}