Merge branch 'develop' of dev.sys.reslate.xyz:ydeng/cfcoreapi into develop

This commit is contained in:
Harrison Deng 2022-05-20 16:51:48 -05:00
commit 244a207a17

View File

@ -8,12 +8,12 @@ using CFCoreAPI.Endpoints.Mods;
namespace CFCoreAPI
{
public class CFCoreAPI
public class CFCore
{
private readonly string _apiKey;
public HttpClient HttpClient { get; private set; }
public CFCoreAPI(string key)
public CFCore(string key)
{
this._apiKey = key;
this.HttpClient = new HttpClient();