[FEAT]: Adds codespaces APIs

This commit is contained in:
Alexander Sklar
2023-06-16 10:26:39 -07:00
committed by GitHub
parent 8f0b3a7537
commit da5c4d7d3c
17 changed files with 480 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Octokit
{
public interface ICodespacesClient
{
Task<CodespacesCollection> GetAll();
Task<CodespacesCollection> GetForRepository(string owner, string repo);
Task<Codespace> Get(string codespaceName);
Task<Codespace> Start(string codespaceName);
Task<Codespace> Stop(string codespaceName);
}
}