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(()) }