gravitydb-filestore 0.3.0

A filestore backend for the gravity database
Documentation
1
2
3
4
5
6
7
8
9
10
use gravitydb_filestore::cli_helpers;
use anyhow::Result;

fn main() -> Result<()> {
  cli_helpers::db_cmds::<gravitydb::schema::GenericProperty>(init_nothing)
}

fn init_nothing(_ : &mlua::Lua) -> mlua::Result<()> {
  Ok(())
}