Front end for uploading a release asset.

This commit is contained in:
Matt Burke
2013-10-02 14:55:05 -04:00
committed by Haacked
parent 9a6e46d608
commit 15a5cc9591
8 changed files with 124 additions and 0 deletions
+5
View File
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Octokit.Clients;
@@ -124,5 +125,9 @@ namespace Octokit.Http
return new ReadOnlyPagedCollection<TOther>(response, Connection);
}
public Task<TOther> Upload<TOther>(Uri uri, Stream rawData, Dictionary<string, string> headers)
{
throw new NotImplementedException();
}
}
}