-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathPackageClient.cs
More file actions
30 lines (26 loc) · 918 Bytes
/
PackageClient.cs
File metadata and controls
30 lines (26 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using NGitLab.Models;
namespace NGitLab.Mock.Clients
{
internal sealed class PackageClient : ClientBase, IPackageClient
{
public PackageClient(ClientContext context)
: base(context)
{
}
public Task<Package> PublishAsync(int projectId, PackagePublish packagePublish, CancellationToken cancellationToken = default)
{
throw new System.NotImplementedException();
}
public IEnumerable<PackageSearchResult> Get(int projectId, PackageQuery packageQuery)
{
throw new System.NotImplementedException();
}
public Task<PackageSearchResult> GetByIdAsync(int projectId, int packageId, CancellationToken cancellationToken = default)
{
throw new System.NotImplementedException();
}
}
}