mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
Implement dependency review and dependency submission Co-authored-by: André Pereira <Andre.LuisPereira@Student.HTW-Berlin.de>
22 lines
694 B
C#
22 lines
694 B
C#
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Dependency Graph API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://docs.github.com/en/rest/dependency-graph">Git Dependency Graph API documentation</a> for more information.
|
|
/// </remarks>
|
|
public interface IDependencyGraphClient
|
|
{
|
|
/// <summary>
|
|
/// Client for getting a dependency comparison between two commits.
|
|
/// </summary>
|
|
IDependencyReviewClient DependencyReview { get; }
|
|
|
|
/// <summary>
|
|
/// Client for submitting dependency snapshots.
|
|
/// </summary>
|
|
IDependencySubmissionClient DependencySubmission { get; }
|
|
}
|
|
}
|