add file listing to database abstraction.
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
bdf3997de5
commit
6b1933914d
4 changed files with 29 additions and 0 deletions
|
@ -34,6 +34,8 @@ pub(crate) trait KeyValueDatabaseEngine: Send + Sync {
|
|||
fn backup(&self) -> Result<(), Box<dyn Error>> { unimplemented!() }
|
||||
|
||||
fn backup_list(&self) -> Result<String> { Ok(String::new()) }
|
||||
|
||||
fn file_list(&self) -> Result<String> { Ok(String::new()) }
|
||||
}
|
||||
|
||||
pub(crate) trait KvTree: Send + Sync {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue