1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-16 02:43:00 +00:00

Added unit tests, added solution, added travis build

This commit is contained in:
JKorf
2018-03-07 10:32:57 +01:00
parent 27fb92f999
commit 94eb269ade
29 changed files with 339 additions and 0 deletions
@@ -0,0 +1,13 @@
using System.Net;
using CryptoExchange.Net.Interfaces;
namespace CryptoExchange.Net.Requests
{
public class RequestFactory : IRequestFactory
{
public IRequest Create(string uri)
{
return new Request(WebRequest.Create(uri));
}
}
}