List all tables in the MORIE cache
Examples
# \donttest{
db <- tempfile(fileext = ".db")
morie_cache_store(data.frame(x = 1:3), "demo", db_path = db)
morie_cache_list(db_path = db)
#> table rows
#> demo demo 3
file.remove(db)
#> [1] TRUE
# }