namespace Octokit.Reactive { /// /// A client for GitHub's Dependency Graph API. /// /// /// See the Git Dependency Graph API documentation for more information. /// public interface IObservableDependencyGraphClient { /// /// Client for getting a dependency comparison between two commits. /// IObservableDependencyReviewClient DependencyReview { get; } /// /// Client for submitting dependency snapshots. /// IObservableDependencySubmissionClient DependencySubmission { get; } } }