extract local repos

This commit is contained in:
2026-09-14 08:08:19 +07:00
parent a74c166391
commit 037728ffe9
4 changed files with 111 additions and 104 deletions
+3 -1
View File
@@ -2,6 +2,7 @@ mod backend;
mod checkouts;
mod git_store;
mod inbox;
mod local_repos;
mod profile;
mod refresh;
mod repo;
@@ -15,11 +16,12 @@ use git_store::set_git_cache;
pub use git_store::{ensure_repo_mirror, open_repo_mirror, repo_mirror_path};
use gpui::{App, AppContext};
pub use inbox::{Inbox, query_inbox};
pub use local_repos::LocalReposStore;
pub use nostr_sdk::prelude::Timestamp;
pub use profile::{Profile, ProfileStore};
pub use refresh::{RefreshGate, RefreshRequest};
pub use repo::RepoStore;
pub use repos::{LocalReposStore, RepoActivityCounts, RepoListStore};
pub use repos::{RepoActivityCounts, RepoListStore};
use signed_nostr::new_backend;
#[cfg(not(target_arch = "wasm32"))]