pub type GitBranchWriteSchemaFn = fn(gitdir: &Path, name: &str, version: &str, files: &[(String, Vec<u8>)]) -> Result<String, BackendError>;Expand description
Engine::install_schema dispatch for the git-branch backend: write a
schema package ((relative-path, bytes) pairs) onto the workspace’s
unified __MEMSTEAD:schemas/<name>@<version>/ ref and return the
resulting commit sha. Mirrors
memstead_git_branch::storage_memstead::write_schema_to_memstead_ref.