MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / pull_projects

Function pull_projects

rust/src/collaboration/sync.rs:499–505  ·  view source on GitHub ↗

TODO: this needs to be removed imo

(database: &Database)

Source from the content-addressed store, hash-verified

497
498// TODO: this needs to be removed imo
499pub(crate) fn pull_projects(database: &Database) -> Result<bool, ()> {
500 let Some(remote) = get_remote_for_local_database(database)? else {
501 return Ok(false);
502 };
503 remote.pull_projects()?;
504 Ok(true)
505}
506
507// TODO: This needs to be removed imo
508pub(crate) fn pull_files(database: &Database) -> Result<bool, ()> {

Callers 2

pull_filesFunction · 0.85

Calls 2

pull_projectsMethod · 0.45

Tested by

no test coverage detected