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:
@@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user