mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 03:01:31 +00:00
[FEAT]: Adds codespaces APIs
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user