Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit 5a4819c

Browse files
committed
remove lfs
1 parent 6b394c2 commit 5a4819c

4 files changed

Lines changed: 3 additions & 67 deletions

File tree

crates/mesa-dev/src/client/lfs.rs

Lines changed: 0 additions & 56 deletions
This file was deleted.

crates/mesa-dev/src/client/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ mod branches;
2020
mod commits;
2121
mod content;
2222
mod diff;
23-
mod lfs;
2423
mod org;
2524
mod repo;
2625
mod repos;
@@ -35,7 +34,6 @@ pub use branches::BranchesClient;
3534
pub use commits::CommitsClient;
3635
pub use content::ContentClient;
3736
pub use diff::DiffClient;
38-
pub use lfs::LfsClient;
3937
pub use org::OrgClient;
4038
pub use repo::RepoClient;
4139
pub use repos::ReposClient;

crates/mesa-dev/src/client/repo.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ use crate::low_level::apis::{repos_api, Error};
22
use crate::models;
33

44
use super::{
5-
AnalyticsClient, BranchesClient, CommitsClient, ContentClient, DiffClient, LfsClient,
6-
OrgClient, SyncClient, WebhooksClient,
5+
AnalyticsClient, BranchesClient, CommitsClient, ContentClient, DiffClient, OrgClient,
6+
SyncClient, WebhooksClient,
77
};
88

99
/// Client scoped to a specific repository (`/{org}/{repo}`).
@@ -89,12 +89,6 @@ impl RepoClient<'_> {
8989
WebhooksClient { repo: self }
9090
}
9191

92-
/// Access LFS operations.
93-
#[must_use]
94-
pub fn lfs(&self) -> LfsClient<'_> {
95-
LfsClient { repo: self }
96-
}
97-
9892
/// Access analytics and AI attribution.
9993
#[must_use]
10094
pub fn analytics(&self) -> AnalyticsClient<'_> {

crates/mesa-dev/src/low_level/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub mod content;
1717
/// configure authentication and the base URL.
1818
pub mod apis {
1919
pub use mesa_dev_oapi::apis::{
20-
admin_api, agent_blame_api, branches_api, commits_api, configuration, diffs_api, lfs_api,
20+
admin_api, agent_blame_api, branches_api, commits_api, configuration, diffs_api,
2121
org_api, repos_api, webhooks_api, Error, ResponseContent,
2222
};
2323
}

0 commit comments

Comments
 (0)